This repository has been archived by the owner on May 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstylesheet.css
162 lines (124 loc) · 2.01 KB
/
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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
html{
height: 100%
}
nav{
display:block;
margin:0 auto;
background-color:rgba(0, 0, 0, 0.4);
padding: 1em 2em;
}
nav ul{
display: flex;
margin: 0 auto;
width: 90%;
}
nav ul li{
display: block;
text-align: center;
margin: auto;
width: 25%;
clear: none;
}
a{
color: rgb(245, 245, 245);
text-decoration: none;
}
a:hover{
text-decoration: underline;
}
img{
width:60px;
height:60px;
}
body{
min-height: 100%;
margin: 0;
font-family: 'Exo', sans-serif;
background-image: url(Images/thingymabob.png);
background-repeat:no-repeat;
background-size:cover;
background-position: center;
background-attachment: fixed;
display: flex;
flex-direction: column;
}
.wrapper{
height: 100%;
flex: 1;
}
h1{
margin: 0;
text-align: center;
padding: 50px 0px 25px 0px;
font-size: 2.5em;
}
main{
margin:0;
color: rgb(255, 255, 255);
padding-bottom:50px;
}
#intro{
width: 33%;
margin-left: 33%;
margin-bottom: 4.5em;
}
#content{
width: 80%;
margin-left: 10%;
}
main p{
padding-top: 1em;
}
main ul{
display: flex;
padding:0 20px;
}
main ul li{
width: 20%;
display: block;
clear: none;
padding: 0 2.5%;
}
main h2{
font-size: 1.4em;
padding-bottom: 20px;
}
main a{
text-decoration:
underline;
}
main a:hover{
color:rgb(169, 169, 169);
}
footer{
position: relative;
bottom: 0;
left: 0;
background-color:rgba(0, 0, 0, 0.4);
width: 100%;
height: 50px;
color: rgb(245, 245, 245);
clear: both;
order: 6;
}
footer p{
padding: 1em 0 0 1em ;
}
/*Mobile view*/
@media (max-width:600px){
nav{display: none;}
main ul{
display: flex;
flex-direction: column;
padding: 0 3em;
}
main ul li{
align-self: center;
width: 100%;
margin: 1.2em 0;
}
#intro{
width: 80%;
margin: 0 auto 3em auto;
}
}