-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.css
More file actions
71 lines (60 loc) · 1.02 KB
/
home.css
File metadata and controls
71 lines (60 loc) · 1.02 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
60
61
62
63
64
65
66
67
68
69
70
71
body {
background-color: #14314f;
background-image: url(assets/background.png);
color: #fff;
}
#rocket {
display: block;
margin: 0 auto;
width: 81px;
height: 90px;
background-image: url(assets/rocket.gif);
background-repeat: no-repeat;
background-size: 100%;
margin-bottom: 16px;
}
p.message {
font-family: 'Noto Serif', serif;
font-weight: 100;
font-size: 12pt;
line-height: 1.4em;
text-align: center;
}
.social {
font-weight: 100;
font-size: 18pt;
line-height: 1.4em;
text-align: center;
}
.social img {
width: 30px;
height: auto;
margin: 0 4px 4px;
}
.outer {
height: calc(100vh - 330px);
}
@media screen and (min-height: 550px) {
#rocket {
width: 144px;
height: 160px;
}
.outer {
height: calc(100vh - 400px);
}
}
@media screen and (min-width: 670px) and (min-height: 800px) {
#rocket {
width: 270px;
height: 300px;
}
p.message {
font-size: 24pt;
}
.social img {
width: 60px;
}
.outer {
height: calc(100vh - 625px);
}
}