-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (65 loc) · 992 Bytes
/
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
body {
margin-left: 200px;
margin-bottom: 75px;
background: #122;
color: #aab;
font-family: Arial;
}
form, article {
width: 400px;
}
form {
text-align: right;
}
.file {
padding: 0 5px;
}
.file:nth-child(odd) {
background: #233;
}
a {
color: #fff;
text-decoration: none;
}
footer {
position: fixed;
left: 0;
right: 0;
bottom: 0;
padding: 10px 200px;
background: #122;
border-top: 2px solid #233;
text-align: right;
}
#left {
float: left;
}
.right {
float: right;
}
.error {
padding: 2px 10px;
margin-bottom: 4px;
background: rgba(255, 0, 0, 0.2);
border: 2px solid rgba(255, 0, 0, 0.3);
text-align: center;
}
a.button {
font-size: 13px;
padding: 0 5px;
}
input, a.button {
background: #122;
border: 2px solid #233;
color: #aab;
}
input[type="submit"], a.button {
width: 65px;
}
input[type="submit"]:active, a.button:active {
border: 2px solid #122;
background: #122!important;
}
input[type="submit"]:hover, a.button:hover {
background: #233;
}