-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest5.css
More file actions
59 lines (54 loc) · 1.13 KB
/
test5.css
File metadata and controls
59 lines (54 loc) · 1.13 KB
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
.nav {
float: right ;
list-style: none;
margin-right: 10px;
}
.nav li{
float: left ;
display:inline;
margin: 0 0 0 30px;
width:100px;
border: 1px solid white;
}
.nav li>a { font: 1em helvertica arial sans-serif ;
line-height: 3em ;
display : inline-block ;
width:100px ;
text-align:center;
text-decoration : none ;
font-weight:bold;
}
.nav a:hover { color :#fff ;
background-color :#db9834;}
a{ color: white;}
#fondecran {
position: fixed;
top: 0;
left: 0;
min-width: 100%;
min-height: 100%;
}
.bg-image{
height: 100vh;
background-image: url("/home/marceline/Bureau/image/pic.png");
filter: blur(8px);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.contenu {
z-index: 2 ;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0, 0.4);
color: white;
font-weight: bold;
border: 3px solid #f1f1f1;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 2;
width: 80%;
padding: 20px;
text-align: center;
}