-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
52 lines (45 loc) · 868 Bytes
/
Copy pathindex.css
File metadata and controls
52 lines (45 loc) · 868 Bytes
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
body {
font-family: 'Roboto', sans-serif;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Roboto Mono', monospace;
background-color: rgb(22, 20, 20);
color: rgb(224, 211, 211);
}
.mainframe {
text-align: center;
width: 50%;
}
button {
border-radius: 5px;
margin-bottom: 5pt;
font-size: 25px;
cursor: pointer;
}
button:active {
background-color: darkgrey;
border-width: 2px;
}
button:hover {
background-color: lightgrey;
}
textarea {
width: 100%;
resize: vertical;
min-height: 100%;
font-size: 25pt;
border-style: solid;
border-width: 2px;
border-radius: 5px;
padding: 10px;
}
textarea::placeholder {
color: rgb(190, 190, 190);
font-size: 20pt;
}
.input-label {
margin-top: 50px;
margin-bottom: 10px;
font-size: 25px;
}