-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
107 lines (100 loc) · 1.88 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
95
96
97
98
99
100
101
102
103
104
105
106
107
html{
height:100%;
}
body{
background: url('http://i1.adis.ws/i/JIMC/8068540888_93e9673865_o?qlt=50&w=1920');
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
overflow: hidden;
font-family: Helvetica, Arial, sans-serif;
height:100%;
padding:0;
margin:0;
overflow:hidden;
}
.logo{
position:absolute;
top:0;
-webkit-transform: translate(-50%, 0);
-moz-transform: translate(-50%, 0);
transform: translate(-50%, 0);
left:50%;
}
.kilt{
position:absolute;
top:300px;
left:50%;
-webkit-transform: translate(-50%, 0);
-moz-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
.attribution{
position:absolute;
right:15px;
bottom:0px;
padding:5px 10px;
background: rgba(0,0,0,0.8);
}
.attribution>a{
color:white;
}
.tagline{
position:absolute;
top:190px;
left:50%;
-webkit-transform: translate(-50%, 0);
-moz-transform: translate(-50%, 0);
transform: translate(-50%, 0);
font-family: 'Josefin Slab', serif;
font-size: 32px;
text-align: center;
}
.tagline em{
text-decoration: underline;
}
@media (max-width: 479px) {
.logo-300 {
display: block;
}
.logo-500, .logo-orig{
display:none
}
.tagline{
top:64px;
font-size:24px;
}
canvas{
margin-top:-50px;
}
}
@media (min-width: 480px) and (max-width:649px) {
.logo-500 {
display: block;
}
.logo-300, .logo-orig{
display:none
}
.tagline{
top:110px;
font-size:30px;
}
canvas{
margin-top:50px;
}
}
@media (min-width: 650px) {
.logo-orig {
display: block;
}
.logo-300, .logo-500{
display:none
}
.tagline{
top:160px;
font-size:37px;
}
canvas{
margin-top:130px;
}
}