-
Notifications
You must be signed in to change notification settings - Fork 0
/
overall_main.css
84 lines (74 loc) · 1.39 KB
/
overall_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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
body {
display: flex;
flex-direction: column;
align-items: center;
}
.headline {
font-family: Tahoma;
text-align: center;
color: grey;
}
.caption {
max-width: 80%;
font-family: Tahoma;
color: grey;
font-size: 16px;
}
a {
color: grey;
}
/* buttons */
.generalButton {
background-color: #18111e;
border-color: darkgrey;
padding: 5px 5px;
font-size: 11px;
font-family: Tahoma;
color: darkgrey;
}
.secondButton {
background-color: #18111e;
border-color: #feff8a;
border-width: 2px;
padding: 5px 15px;
font-size: 11px;
font-family: Tahoma;
color: darkgrey;
box-shadow: inset 0 0 0 1px #27496d,0 5px 15px #193047;
}
.clickedButton {
background-color: darkgrey;
border-color: black;
padding: 5px 5px;
color: #18111e;
font-size: 11px;
font-family: Tahoma;
box-shadow: inset 0 0 0 1px #27496d,inset 0 5px 10px #193047;
}
.disabledButton{
cursor: not-allowed;
pointer-events: none;
background-color: #18111e;
border-color: #18111e;
padding: 5px 5px;
font-size: 10px;
font-family: Tahoma;
color: darkgrey;
}
.removedButton{
cursor: not-allowed;
pointer-events: none;
background-color: #18111e;
border-color: #18111e;
padding: 5px 5px;
font-weight: bold;
font-family: Tahoma;
color: #18111e;
}
.topButton {
background-color: #18111e; /* Green */
border: none;
padding: 5px 5px;
font-size: 14px;
font-family: Tahoma;
}