-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
94 lines (83 loc) · 1.41 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
@font-face {
font-family: Mantinia;
src: url(MantiniaRegular.otf);
}
.font{
font-family: Mantinia;
color: #D9BB84;
text-shadow: 1px 1px 3px #495057;
}
body{
/*background-image: url(https://mdbcdn.b-cdn.net/img/new/standard/city/041.webp); */
background: url('img/wp/wp2.jpg');
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
background-position:center ;
}
.bg-dark1{
padding: 10px;
}
.bg-dark2{
padding: 50px;
}
footer{
margin-top: 8ex;
}
.titre
{
padding-top: 20px;
padding-bottom: 20px;
}
.erborder{
padding-bottom: 20px;
padding-top: 20px;
}
.tbcontent{
max-height:680px;
overflow:auto;
}
.set-width {
width: 220px;
}
.btn{
font-size:medium;
background-color: #C19D53;
color: white;
}
.btn:hover
{
background-color: white;
text-decoration: black;
}
input {
text-align: center;
}
.img-fluid1{
max-width: 300px;
align-items: center;
max-height: 170px;
}
.bloc{
position: relative;
height: 100vh;
width: 100%;
overflow: hidden;
}
.bloc video{
position: absolute;
min-width: 100%;
min-height: 100%;
top: 50%;
left: 50%;
z-index: -100;
transform: translate(-50%, -50%);
}
.bloc::before{
position: absolute;
content: "";
height: 100%;
width: 100%;
z-index: -99;
background-color: #00000094;
}