-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
120 lines (97 loc) · 1.45 KB
/
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
html,body {
height: 98%;
}
body {
font-family: 'Open Sans', sans-serif;
background-color: #4f5b66;
color: #eff1f5;
}
li {
list-style: none;
color: #eff1f5;
}
a {
text-decoration: none;
color: #a3be8c;
}
a:hover {
text-decoration: underline;
}
input {
color: #2b303b;
}
::selection {
background: #c0c5ce; /* WebKit/Blink Browsers */
}
::-moz-selection {
background: #c0c5ce; /* Gecko Browsers */
}
.box {
background-color: #c0c5ce;
height: 50px;
width: 50px;
}
.pointer {
cursor: pointer;
}
.button {
width: 81px;
height: 42px;
margin: 20px;
line-height: 42px;
}
.buttonSimple {
width: 140px;
height: 42px;
margin: 20px;
line-height: 42px;
border: 1px solid #2b303b;
background-color: #4f5b66;
color: #eff1f5;
}
.buttonSimple:hover {
background-color: #c0c5ce;
}
.invisible {
display: none;
}
.inline-block {
display: inline-block;
}
.centerText{
text-align: center;
}
.rightText {
text-align: right;
}
.center {
margin-left: auto;
margin-right: auto;
}
.hint {
color: #c0c5ce;
margin-top: 5px;
font-size: 12px;
}
.underline:hover {
text-decoration: underline;
}
.leaderboard th {
border: 1px solid #2b303b;
padding-left: 20px;
padding-right: 20px;
}
.leaderboard tr:nth-child(even) {
background-color: rgba(192, 197, 206, 0.6);
}
.parent {
height: 100%;
}
.element {
position: relative;
top: 50%;
transform: translateY(-50%);
}
#feld {
background-color: #4f5b66;
}