-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathachievements.css
60 lines (56 loc) · 1.04 KB
/
achievements.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
body{
background-color: black;
}
.achievements_table {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
margin-top: 8rem; /* root emphemeral unit*/
border-collapse: collapse;
width: 100%;
}
.heading {
font-size: x-large;
padding: 1rem;
color: white;
background-color: #503d34;
border-bottom: 2px solid #907163;
border-radius: 5px 5px 0px 0px;
}
.row {
border-bottom: 2px solid #379683ed;
color: #080000;
font-size: larger;
}
td {
padding: 1rem;
}
.odd {
background-color: #edf5e1;
}
.even {
background-color: #e1f0ca;
}
.navbar {
position: fixed;
top: 0;
width: 100%;
display: flex;
padding: 20px;
background-color: #379683;
}
/* Style the links inside the navigation bar */
.navbar a {
float: right;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 20px;
}
/* Change the color of links on hover */
.navbar a:hover {
background-color: #5cdb95;
}