-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
72 lines (56 loc) · 943 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
60
61
62
63
64
65
66
67
68
69
70
71
72
* {
font-family: arial;
}
/*SECTION 1*/
#section1 {
width: 100%;
margin: 50px auto;
font-size: 200%
}
#section1-inner {
text-align: center
}
#section1 img {
width: 600px;
height: auto;
margin: 0;
border: none;
}
@media screen and (max-width: 600px) {
#section1 img {
max-width: 100%;
min-width: 350px;
}
}
/*NAVBAR*/
nav ul {
margin: 0 auto;
max-width: 800px;
display: flex;
list-style-type: none;
justify-content: space-around;
padding-bottom: 10px;
box-shadow: 0 8px 6px -6px #999;
}
nav li {
flex: 1 0 100px;
text-align: center;
}
nav a {
text-decoration: none;
color: black;
padding: 20px 30px;
}
nav a:hover {
color: #EF0056;
font-weight: 700;
}
/*SECTION 3*/
#section3 {
width: 100%;
text-align: center;
}
img {
margin-top: 80px;
border: solid black 5px;
}