-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (81 loc) · 1.43 KB
/
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
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
body {
font-family: Arial, Helvetica, sans-serif;
margin: 0px;
font-size: 1.5vw;
}
h1 {
margin: 0px;
padding: 8px;
font-family: "Fredoka One", sans-serif;
box-shadow: 8px 8px 10px 3px darkorange;
width: 16%;
text-shadow:
1px 1px 0px black, /* Bottom-right shadow */
-1px 1px 0px black, /* Bottom-left shadow */
1px -1px 0px black, /* Top-right shadow */
-1px -1px 0px black, /* Top-left shadow */
}
ul {
margin: 0px;
}
body > header {
background-color: orange;
color: white;
display: flex;
height: 12vh;
align-items: centre;
justify-content: space-around;
}
#nav-ul {
display: flex;
}
#nav-ul > li {
padding: 8px;
margin: 16px
}
body > header > nav > ul {
list-style: none;
text-decoration: none;
}
.navbutton {
color: white;
text-decoration: none;
padding: 12px;
border: 1px solid white;
border-radius: 10%;
}
body > main article {
width: 60%;
margin: auto;
}
#main-content {
display: flex;
justify-content: space-around;
}
#main-content > div {
width: 70%;
}
form {
text-align: center;
}
h2 {
text-align: center;
}
body > footer {
background-color: orange;
display: flex;
}
img {
border-radius: 50%;
}
#footer-ul {
display: flex;
list-style: none;
}
#footer-ul > div > li {
margin-left: 12px;
}
#footer-ul >div > li > a{
text-decoration: none;
color: white;
}