-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
59 lines (51 loc) · 895 Bytes
/
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
*{
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
header{
display: flex;
justify-content: space-between;
padding-left: 4rem;
}
header>h1{
font-size: 2.3rem;
}
ul{
display: flex;
justify-content: space-between;
list-style: none;
margin-right: 50rem;
font-size: x-large;
}
ul>li{
margin-right: 4rem;
}
nav{
width: 25vw;
}
.bigimg{
width: 95vw;
padding-bottom: 20px ;
margin: 2rem;
}
.container{
width: 95vw;
display: flex;
}
.container>div{
width: 30vw;
padding: 3rem;
text-align: center;
line-height: 30px;
}
.container>div>p{
font-size: x-large;
}
footer{
background-color: black;
text-align: center;
color: white;
height: 3.2rem;
}
footer>h3{
padding: 1rem;
}