-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutstyle.css
92 lines (89 loc) · 1.75 KB
/
aboutstyle.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
body {
overflow: hidden;
}
#title {
font-family: 'Maven Pro', sans-serif;
position: absolute;
top: 15%;
left: 45%;
transform: translate(-50%, -50%);
height: 20%;
font-size: 5em;
}
#wow {
position: absolute;
top: 60%;
left: 40%;
transform: translate(-50%, -50%);
height: 20%;
font-size: 1.15em;
text-align: right;
padding-right: 80px;
}
.box {
background-color: #b3c2bf;
color: #dae7d6;
}
.header {
padding-top: 0px;
font-family: 'Maven Pro', sans-serif;
text-align: center;
color: #e9ece5;
font-size:7em;
}
.topnav .container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
height: 20%;
}
.topnav {
background-color: transparent;
font-family: 'Maven Pro', sans-serif;
overflow: hidden;
height: 20px;
}
/* Style the links inside the navigation bar */
.topnav a {
position: relative;
float: left;
color: #e9ece5;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0%;
border-bottom: 2px solid #e9ece5;
transition: 0.4s;
}
/* Change the color of links on hover */
.topnav a:hover {
background-color: transparent;
color: #e9ece5;
text-decoration: none;
}
.topnav a:hover:after {
width: 100%;
}
/* Add a color to the active/current link */
.topnav a.active {
background-color: transparent;
text-decoration: none;
color: white;
}
#mascot {
float: bottomleft;
max-width: 40%;
max-height:40%;
}
p {
font-family: 'Maven Pro', sans-serif;
color: #e9ece5;
}