-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (75 loc) · 1.62 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
/* Style the header with a grey background and some padding */
.header {
overflow: hidden;
background-color: #0da314;
padding: 20px 10px;
}
/* Style the header links */
.header a {
float: left;
color: black;
text-align: center;
padding: 12px;
text-decoration: none;
font-size: 18px;
line-height: 25px;
border-radius: 4px;
font-family: Arial, Helvetica, sans-serif;
}
/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
font-size: 25px;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
}
/* Change the background color on mouse-over */
.header a:hover {
background-color: rgb(0, 139, 0);
color: black;
}
/* Style the active/current link*/
.header a.active {
background-color: rgb(133, 214, 144);
color: rgb(0, 0, 0);
}
/* Float the link section to the right */
.header-right {
float: right;
}
/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 500px) {
.header a {
float: none;
display: block;
text-align: left;
}
.header-right {
float: none;
}
}
.title{
text-align: center;
margin:0;
padding-top: 20px;
line-height:15px;
}
body{
font-family: Arial, Helvetica, sans-serif;
background-color: rgb(77, 124, 83);
}
.mostRecent{
text-align: center;
line-height:15px;
padding-top: 25px;
}
.badge{
padding-top: 15px;
width: 200px;
}
.haplogo{
display: block;
width: 200px;
padding: 10px;
margin-left: auto;
margin-right: auto;
}