-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
69 lines (58 loc) · 1.06 KB
/
main.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
html,body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #fff;
padding: 0;
margin: 0;
width: 100%;
}
.main {
padding: 20;
text-align: center;
}
a {
color: #ED2771;
text-decoration: none;
font-weight: bold;
}
.center {
margin-left: auto;
margin-right: auto;
}
td, tr {
text-align: left;
}
#debug-table {
border-collapse: collapse;
}
#debug-table td, #debug-table th {
border: 1px solid #ddd;
padding: 8px;
}
#debug-table tr:nth-child(even){background-color: #f2f2f2;}
#debug-table tr:hover {background-color: #ddd;}
#debug-table th {
padding-top: 12px;
padding-bottom: 12px;
background-color: #ED2771;
color: white;
}
.btn {
margin-top: 10px;
padding: 5px 11px;
margin-bottom: 2px;
line-height: 13px;
font-size: 11px;
font-weight: 700;
letter-spacing: 1px;
background: #23B1EC;
text-transform: uppercase;
color: #ffffff;
border-width: 1px;
border-style: solid;
border-color: #23B1EC;
border-radius: 6px;
-webkit-border-radius: 6px;
}
.btn:hover {
cursor: pointer;
}