-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
110 lines (97 loc) · 2.57 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
background-color: black;
}
.title {
display: flex;
justify-content: center;
align-items: center;
color: white;
background-color: black;
}
textarea {
height: 40vh;
width: 100vw;
font-size: 16px;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
padding: 1rem;
border: 0.5rem solid black;
border-radius: 1rem;
background-color: rgb(241, 241, 241);
}
.btns {
display: flex;
justify-content: center;
align-items: center;
gap: 0.5rem 0.5rem;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
margin: 2rem;
}
.ubtn {
background-color: #ffffff; /* Green */
height: auto;
width: 7rem;
border: none;
color: rgb(0, 0, 0);
padding: 15px 0px;
text-align: center;
text-decoration: none;
display: inline-block;
border-radius: 5px; /* Rounded corners */
cursor: pointer; /* Pointer cursor on hover */
}
.lbtn {
background-color: #ffffff; /* Green */
height: auto;
width: 7rem;
border: none;
color: rgb(0, 0, 0);
padding: 15px 0px;
text-align: center;
text-decoration: none;
display: inline-block;
border-radius: 5px; /* Rounded corners */
cursor: pointer; /* Pointer cursor on hover */
}
.copy {
background-color: #ffffff; /* Green */
height: auto;
width: 7rem;
border: none;
color: rgb(0, 0, 0);
padding: 15px 0px;
text-align: center;
text-decoration: none;
display: inline-block;
border-radius: 5px; /* Rounded corners */
cursor: pointer; /* Pointer cursor on hover */
}
.clear {
background-color: #ffffff; /* Green */
height: auto;
width: 7rem;
border: none;
color: rgb(0, 0, 0);
padding: 15px 0px;
text-align: center;
text-decoration: none;
display: inline-block;
border-radius: 5px; /* Rounded corners */
cursor: pointer; /* Pointer cursor on hover */
}
@media (max-width: 1080px) {
.btns {
display: flex;
justify-content: center;
align-items: center;
gap: 0.3rem 0.3rem;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
}
}