forked from justinpavatte/pmc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
60 lines (52 loc) · 882 Bytes
/
styles.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
body {
background-color: #131314;
color: #E3E3E3;
}
span {
margin: 10px;
}
a {
font-size: 35px;
margin: 5px;
display: inline-block;
color: #E3E3E3;
}
label {
font-size: 25px;
margin: 5px;
}
input {
font-size: 25px;
color: #f9f7f7;
margin: 5px;
width: 250px;
border-radius: 5px;
background-color: #1E1F20;
border-color: #8d8f91;
}
button {
background-color: #8d8f91;
font-weight: bold;
font-size: 25px;
margin: 10px 5px 5px 5px;
padding: 15px;
border-radius: 10px;
width: 258px;
}
select {
background-color: #333;
color: white;
border: none;
padding: 5px 10px;
cursor: pointer;
font-size: 20px;
border-radius: 5px;
margin-left: 2px;
}
select option {
background-color: #333;
color: white;
}
select:hover {
background-color: #222;
}