-
Notifications
You must be signed in to change notification settings - Fork 0
/
index-style.css
54 lines (47 loc) · 915 Bytes
/
index-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
body{
background-color:#eee;
margin:auto;
}
header {
height:400px;
width:100%;
/*
* Color pattern's : (#001220) (#FBAE3C)
* also (#8A3FFC)
*/
background-image: url('media/svg/wallpaper.svg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color:white;
text-align:center;
}
header ul, header ul li, header nav{
display:inline-block;
}
header nav{
margin-top:10px;
}
header ul li{
list-style-type: none;
padding: 10px;
margin: 10px;
border:2px solid #fff;
border-radius:60% 10%;
}
header ul li:hover{
background-color:#fff;
color:black;
}
header ul li a{
text-decoration:none;
color:inherit;
}
#section1{
width:100%;
height: 200px;
background-image: url('media/svg/wave1.svg');
background-size: cover;
/* background-position: center;*/
background-repeat: no-repeat;
}