-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain-style.css
62 lines (55 loc) · 1.02 KB
/
main-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
body {
background-image: url('background1.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
margin: 0;
padding: 0;
color: white;
font-family: Arial, Helvetica, sans-serif;
width: 100%;
overflow-x: hidden;
}
.header {
display: flex;
justify-content: center;
}
nav {
margin: 0;
padding: 0;
}
.nav-ul {
display: flex;
justify-content: space-between;
align-items: center;
margin: auto;
padding: 0;
background-color: rgb(49, 0, 84);
border: solid greenyellow;
border-style: outset;
border-width: 1px;
}
.nav-list {
display: inline-block;
text-align: center;
font-size: 90%;
background-color:indigo;
border: solid;
border-style: inset;
border-color: #48255c;
border-width: 2px;
border-radius: 10%;
width: 20%;
}
footer {
text-align: center;
margin-top: 30%;
}
a {
color: white;
transition: all .15s;
}
a:hover {
opacity: 80%;
text-decoration: none;
}