-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (42 loc) · 972 Bytes
/
Copy pathstyle.css
File metadata and controls
50 lines (42 loc) · 972 Bytes
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
/**
* Author : Jean-Baptiste Pellier
* Project Name : OpenClassRooms P5 - "Quote Engine"
* Description : Concieve a quote engine with native javascript
* Tags : JS / BOOTSTRAP / ALGORITHM
*/
/* =============== INDEX ===============
1. HTML & BODY
2. MAIN LAYOUT
*/
/* 1. HTML & BODY
________________________________________ */
html {
height:100%;
background: url(OCP5_bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
body {
background:none;
}
/* 2. MAIN LAYOUT
________________________________________ */
#logo {
margin-top:25vh;
margin-bottom:5vh;
}
#buttons {
display: none;
}
#merci {
margin: 0;
position: absolute;
top: 50%;
-ms-transform: translateY(-50%);
transform: translateY(-50%);
left:50%;
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}