-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
139 lines (124 loc) · 2.43 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
body {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#stats {
width: 90vw;
position: absolute;
z-index: 30;
color: white;
padding: 15px 20px;
display: flex;
flex-direction: row;
justify-content: space-between;
}
#info {
position: absolute;
bottom: 30px;
margin: 0 auto;
z-index: 20;
color: white;
padding: 30px 20px 0 20px;
width: 90vw;
display: inline;
justify-content: center;
text-align: center;
}
#stat-bar {
position: absolute;
z-index: 20;
background-color: rgb(203, 203, 203);
width: 100vw;
height: 50px;
opacity: 0.3;
}
#notification-bar {
position: absolute;
bottom: 0;
z-index: 20;
background-color: rgb(203, 203, 203);
width: 100vw;
height: 80px;
opacity: 0.3;
}
.noticeboard text{
font-size: 12px
}
#filterBtn {
position: absolute;
bottom: 25px;
right: 20px;
z-index: 20;
border-radius: 6px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
width: max-content;
font-size: 14px;
padding: 6px 12px;
color:#fefefe;
border-radius: 6px;
background-color: rgb(176, 176, 176);
opacity: 0.9;
border: 1px solid #aaa;
box-shadow: 9px 7px 26px -12px rgba(51,51,51,0.65);
letter-spacing: 2px;
}
.modal {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.4);
}
.modal-content {
background-color: #fefefe;
margin: 50% auto;
padding: 20px;
border: 1px solid #888;
border-radius: 6px;
width: 70%;
color: #333333;
animation-name: animatetop;
animation-duration: 0.4s
}
.modal-header {
padding: 2px 0 16px 0;
color: #333333;
font-size: 24px;
}
@keyframes animatetop {
from {bottom: -300px; opacity: 0}
to {bottom: 0; opacity: 1}
}
.selectType {
display: flex;
flex-direction: column;
}
.selectItem {
display: flex;
flex-direction: row;
align-items: center;
margin-top: 8px;
}
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: #333333;
text-decoration: none;
cursor: pointer;
}
input[ type='checkbox'] {
background-color: #DFA286;
margin: 6px 6px 6px 0;
}