forked from tiagojsag/whereismarcelat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
41 lines (37 loc) · 788 Bytes
/
css.css
File metadata and controls
41 lines (37 loc) · 788 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
* {
box-sizing: border-box;
}
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
.background {
background-image: url("assets/bg.jpg");
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
position: absolute;
width: 100%;
height: 100%;
opacity: 0.5;
}
.answer {
padding: 50px;
margin: 0;
width: 100%;
text-align: center;
font-size: 6em;
color: white;
font-family: Helvetica, Arial, sans-serif;
position: absolute;
text-shadow: 1px 1px 1px black,
1px -1px 1px black,
-1px 1px 1px black,
-1px -1px 1px black;
}
.question {
font-size: 0.45em;
}