-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (51 loc) · 1.01 KB
/
Copy pathstyle.css
File metadata and controls
54 lines (51 loc) · 1.01 KB
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color: aliceblue;
}
body {
background-color: #111;
height: 100vh;
}
h1 {
width: 100%;
text-align: center;
background-color: lightcoral;
padding: 10px;
font-size: 18px;
}
h2 {
width: 100%;
text-align: center;
background-color: lightcoral;
padding: 10px;
font-size: 18px;
}
select {
color: #3a3a3a;
width: 100%;
border: none;
padding: 12px;
text-align: center;
font-size: 16px;
}
select option {
color: #3a3a3a;
}
textarea {
width: 100%;
resize: vertical;
color: #3a3a3a;
font-size: 18px;
border: 1px solid #3a3a3a;
padding-left: 0.5rem;
}
p {
width: 100%;
text-align: center;
background-color: rgb(36, 36, 36);
padding: 10px;
font-size: 18px;
}