-
Notifications
You must be signed in to change notification settings - Fork 32
/
style.css
71 lines (64 loc) · 1.11 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
body {
background: #333;
color: #FFF;
font-family: -apple-system, 'Helvetica Neue', Arial;
padding: 0;
margin: 0;
overflow: hidden;
text-align: center;
}
a {
color: inherit;
text-decoration: none;
}
h1 {
font-weight: 100;
font-size: 50px;
margin-bottom: 0;
}
#background {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 100vw;
max-width: 414px;
min-width: 375px;
height: 100vh;
background-image: url(bg.jpg);
background-repeat: no-repeat;
background-position: top left;
background-size: 100% auto;
transition: -webkit-filter .5s;
z-index: -1;
}
#forceMe {
width: 93px;
height: 93px;
background: rgba(255,255,255,0.7);
border-radius: 100%;
position: absolute;
top: 408px;
left: 50%;
-webkit-transform: translateX(-50%) translateY(-50%);
transition: -webkit-transform .1s;
}
@media (min-width: 414px) {
#forceMe {
top: 450px;
}
}
#footer {
position: fixed;
bottom: 10px;
right: 10px;
width: 100%;
text-align: right;
}
#forceValue {
position: fixed;
bottom: 10px;
left: 10px;
width: 100%;
text-align: left;
}