-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.css
80 lines (68 loc) · 1.19 KB
/
custom.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
/*
* -- SANTA STYLES --
*/
.santa-container {
background: #1f8dd6;
z-index: 1;
overflow: auto;
width: 100%;
height: 100%;
top: 0;
left: 0;
position: fixed !important; /* I know. Naughty. */
}
.santa {
width: 90%;
height: 70%;
margin: auto;
position: absolute;
top: 0px; left: 0; bottom: 0; right: 0;
text-align: center;
text-transform: uppercase;
}
@media (min-width:768px) {
.santa {
width: 60%;
}
}
/* Main Text */
.santa-main {
font-size: 20px;
font-weight: bold;
color: white;
border: 3px solid white;
padding: 1em 1.6em;
font-weight: 100;
border-radius: 5px;
line-height: 1em;
}
/* Title Text */
.santa-title {
font-size: 30px;
color: white;
letter-spacing: 0.05em;
opacity: 0.8;
}
button.pure-button-primary {
background: white;
color: #1f8dd6;
border-radius: 5px;
font-size: 120%;
}
/* Prevents button sticking to bottom when scrolling
on smaller displays */
button.pure-button-bottom {
margin-bottom: 40px;
}
a.pure-menu-link {
color: white;
}
a.pure-menu-link:focus {
background: none;
}
a.pure-menu-link:hover {
background: red;
}
a.pure-menu-link.highlight {
background: red;
}