-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
76 lines (62 loc) · 1.08 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
body{
background-color: #161415;
width: 100%;
height: 100vh;
margin: 0;
}
.background{
position: relative;
}
header{
display: flex;
position: absolute;
top: 20px;
width: 100%;
}
nav{
margin-left: auto;
margin-right: 75px;
}
ul li{
list-style-type: none;
color: white;
text-align: right;
margin-top: 70px;
margin-right: 100px;
font-family: Arial, Helvetica, "sans-serif";
font-size: 25px;
color: #CC6666;
}
#logo, ul {
display: flex
}
nav ul{
display: flex;
}
#logo{
margin-left: 175px;
margin-top: 70px;
}
.cercle{
position: absolute;
top: 200px;
right: 175px;
border-radius: 100%;
border: solid #CC6666 25px;
height: 550px;
width: 550px;
z-index: initial;
overflow: hidden;
}
.cake{
position: relative;
background:url("./images/Cake.jpg");
background-size: cover;
background-position: center;
height: 550px;
width: 550px;
border-radius: 100%;
transform: scale(1.5);
z-index: -1;
bottom: 30px;
}