-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
46 lines (41 loc) · 870 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
body {
background-color: #303030;
font: 14px normal Arial, Helvetica, sans-serif;
z-index: -4;
color: #ffffff;
}
a {
color: #ffffff;
}
a:hover {
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
color: #808080;
}
input {
border: 1px solid #ffffff;
border-radius: 3px;
padding: 5px;
margin: 5px;
width: 50%;
color: #ffffff;
background-color: #303030;
}
.okbtn {
background-color: #00a700;
border: 1px solid #00a700;
border-radius: 3px;
padding: 5px;
margin: 5px;
width: 150px;
color: #ffffff;
}
.full-center {
margin: 0;
position: relative;
top: 50%;
left: 50%;
text-align: center;
-ms-transform: translate(-50%, 0%);
transform: translate(-50%, 0%);
width: 400px;
}