-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
163 lines (130 loc) · 2.44 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/*/* Import Google Fonts and set default styles */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;700&display=swap");
:root {
--gred: rgb(233, 67, 53);
--gyellow: rgb(255, 191, 0);
--gblue: rgb(60, 117, 232);
--green: rgb(52, 168, 87);
--gwhite: #eaf1fb;
--grey: rgb(119, 115, 115);
--white: white;
--lightblue: #eaf1fb;
}
* {
font-family: "Roboto", sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
a {
text-decoration: none;
}
h4 {
color: var(--grey);
}
.main-content {
padding: 3rem 6rem;
}
.main-content .GCSJ-title {
text-align: center;
margin: 3rem;
display: flex;
justify-content: center;
align-items: center;
}
.main-content .GCSJ-title .GCSJ-text {
display: flex;
justify-content: center;
align-self: center;
}
.main-content .GCSJ-title .GCSJ-text h4 {
font-size: 2rem;
padding: 0px 2px;
}
.main-content .GCSJ-title .GCSJ-text h4:nth-child(1) {
color: red;
}
.main-content .GCSJ-title .GCSJ-text h4:nth-child(2) {
color: var(--gyellow);
}
.main-content .GCSJ-title .GCSJ-text h4:nth-child(3) {
color: var(--green);
}
.main-content .GCSJ-title .GCSJ-text h4:nth-child(4) {
color: var(--gblue);
}
.main-content .GCSJ-title .GCSJ-text h4:nth-child(5) {
color: var(--gblue);
}
.main-content .GCSJ-title .GCSJ-text h4:nth-child(6) {
color: var(--grey);
}
.main-content .GCSJ-title .GCSJ-text h4:nth-child(7) {
color: orangered;
}
/* Search Bar styles */
.main-content .search-box {
display: flex;
margin-bottom: 10px;
position: relative;
justify-content: center;
align-items: center;
margin: 1.5rem auto;
}
.search-box i {
position: absolute;
top: 1rem;
left: 10.4rem;
}
.alert-slider {
width: 70%;
margin: auto;
margin-bottom: 2rem;
background-color: var(--lightblue);
color: red;
border-radius: 2rem;
}
.alert-slider marquee {
padding-top: 0.6rem;
font-size: 1.2rem;
}
/* Table styles */
.table-box {
border: black solid 2px;
margin: 3rem auto;
width: 100%;
background-color: rgb(248, 248, 248);
}
.table-box thead {
border: black solid 2px;
}
.table-box tr {
border-bottom: 1px solid black;
text-align: center;
}
.table-box thead tr th {
color: black;
font-size: 1rem;
}
.table-box #gccp-body tr {
padding: 2rem 1rem;
}
tbody,
td,
tfoot,
th,
thead,
tr {
font-size: 1rem;
padding: 1rem 0rem;
}
/* Footer */
@keyframes blink {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0;
}
}