-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
74 lines (63 loc) · 1003 Bytes
/
stylesheet.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
body{
font-family: 'Special Elite', cursive;
display: flex;
min-height: 100vh;
flex-direction: column;
}
#content {
display: flex;
flex-direction: column;
margin: 0px auto;
width:60%;
justify-content: center;
margin-bottom: 60px;
position: relative;
flex: 1 0 auto;
}
h1 {
font-size: 350%;
margin-bottom:0em;
}
h5 {
margin-top:0em;
margin-bottom:0.1em;
}
h6 {
margin-top:0em;
margin-bottom:1em;
}
#info_title1, #info_title2, #info_title3{
margin-bottom: 7px;
}
#description1, #description2, #description3 {
margin-bottom: 22px;
display: none;
padding-bottom: 10px;
}
#footer{
display: flex;
position: relative;
margin-top: -40px;
height: 40px;
font-size: 70%;
justify-content: center;
text-align: center;
}
ul.navbar li{
display:inline-block;
padding-right: 50px;
}
a {
text-decoration: none;
color: rgba(0,0,0,0.4);
}
a:hover {
color: rgba(0,0,0,0.8);
position: relative;
top: 1px;
}
a:active {
color: rgba(0,0,0,1);
position: relative;
top: 2px;
}