-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
126 lines (109 loc) · 1.88 KB
/
style.css
File metadata and controls
126 lines (109 loc) · 1.88 KB
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
html, body {
margin: 0;
height: 100%;
background-color: #3A4750;
font-family: 'Raleway';
text-align: center;
display: block;
}
.logo {
text-align:center;
height: 70vh;
width: 100vw;
display: block;
}
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
text-decoration-color: #303841;
}
a:active {
text-decoration: none;
}
img {
max-width: 100%;
max-height: 100%;
}
.nav {
height: 20vh;
width: 100vw;
text-align: center;
display: block;
}
.button {
border: none;
border-radius: 20px;
color: #F3F3F3;
padding: 18px 32px;
text-align: center;
text-decoration: none;
font-family: 'Raleway';
display: inline-block;
font-size: 20px;
margin: 8px 4px;
transition-duration: 0.4s;
cursor: pointer;
}
.button-nav {
background-color: #F3F3F3;
color: #3A4750;
border: 5px solid #303841;
}
.button-nav:hover {
background-color: #3A4750;
color: #F3F3F3;
}
.button-nav-active {
background-color: #3A4750;
color: #F3F3F3;
border: 5px solid #303841;
}
.content {
text-align:center;
height: 50vh;
width: 100vw;
display: block;
}
h1 {
margin: 0;
padding: 35px 10%;
font-family: 'Raleway';
font-size: 36px;
font-weight: bold;
color: #F3F3F3;
}
h3 {
margin: 0;
padding: 20px 15%;
font-family: 'Raleway';
font-size: 24px;
font-weight: normal;
color: #F3F3F3;
}
h4 {
margin: 0;
padding: 15px 15%;
font-family: 'Raleway';
font-size: 20px;
font-weight: normal;
color: #F3F3F3;
}
.footer {
text-align:center;
height: 10vh;
width: 100vw;
display: block;
}
.footer-text {
height: 100%;
margin: 0;
font-family: 'Raleway';
font-size: 14px;
font-weight: normal;
color: #F3F3F3;
}