-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
104 lines (92 loc) · 1.71 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
98
99
100
101
102
103
104
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
font-weight: 600;
}
header {
background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(https://gilaxy04ytbcompte2.github.io/loowriters/storage/img/background.png);
height: 97vh;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.logo a {
padding: 0px 20px;
border: 1px solid transparent;
height: 10px;
width: 10px;
text-transform: uppercase;
text-decoration: none;
}
ul {
list-style: none;
float: left;
display: flex;
margin-top: 20px;
}
ul li a {
text-decoration: none;
color: #fff;
padding: 10px 20px;
border: 1px solid transparent;
margin: 10px;
border-radius: 5px;
transition: 0.6s ease;
cursor: pointer;
}
ul li a:hover {
background: #fff;
color: #000;
border-radius: 10px;
}
ul li.active a {
background: #fff;
color: #000;
}
.navBar {
max-width: 114rem;
margin: 0 auto;
}
.titre {
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.text {
text-align: center;
position: absolute;
top: 60%;
left: 45%;
transform: translate(-40%, -40%);
}
.texta {
color: #fff;
font-size: 35px;
}
.titre h1 {
color: #fff;
font-size: 70px;
}
.bouton {
position: absolute;
top: 70%;
left: 50%;
transform: translate(-50%, -50%);
}
.bouton a {
border: 1px solid #fff;
border-radius: 50px;
text-decoration: none;
padding: 10px 18.5px;
}
.btn {
transition: 00.6s ease;
}
.btn:hover {
background-color: #fff;
color: #000;
}