blob: 717b7f33ad9500d136f891df2531c122a6f46ab2 (
plain)
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
@import url(http://fonts.googleapis.com/css?family=Special+Elite);
body {
font-family: "Special Elite", sans-serif;
background: #333333;
color: #dddddd;
}
header {
background: #222222;
position: fixed;
top: 0;
left: 0;
right: 0;
height: 50px;
z-index: 1;
border-bottom: 4px solid #000;
padding: 20px;
box-sizing: border-box;
text-align: right;
}
header > span {
opacity: 0.7;
cursor: pointer;
}
header > span:hover {
opacity: 1;
}
.page {
padding: 70px 20px 170px;
margin: auto;
max-width: 650px;
}
.page:not(.current) {
display: none;
}
h1 {
font-weight: normal;
font-size: 4.5em;
text-align: center;
text-shadow: 0 5px 0 #000;
}
h2 {
text-align: center;
font-weight: normal;
color: #999999;
font-size: 2em;
}
button {
outline: none;
font-size: 2em;
width: 100%;
cursor: pointer;
font-family: "Special Elite", sans-serif;
}
button.card {
color: #222222;
background: #dddddd;
border: 4px solid #999;
box-shadow: 0 5px 0 #999;
padding: 20px;
border-radius: 10px;
}
button.card:not(:last-child) {
margin-bottom: 20px;
}
button.card:active, button.card.black:active {
transform: translateY(5px);
box-shadow: none;
}
button.card.black {
background: #222222;
color: #dddddd;
border: 4px solid #000;
box-shadow: 0 5px 0 #000;
}
button.card:not(.active) {
opacity: 0.7;
}
button.card:hover {
opacity: 1.0;
}
div.card-list.read-only > button.card {
cursor: default;
}
div.card-list.read-only > button.card:hover {
opacity: 0.7;
}
div.card-list.read-only > button.card:active {
transform: none;
box-shadow: 0 5px 0 #999;
}
div.card-list.read-only > button.card.black:active {
box-shadow: 0 5px 0 #000;
}
.bottom {
position: fixed;
bottom: 0;
left: 0;
right: 0;
height: 150px;
box-sizing: border-box;
}
div.bottom {
padding: 20px;
font-size: 1.5em;
background: #222222;
color: #dddddd;
border: 4px solid #000;
}
button.bottom {
font-size: 2.5em;
color: #dddddd;
border: 4px solid #0277BD;
background: #039BE5;
transition: .3s;
}
button.bottom:hover {
background: #0277BD;
font-size: 2.7em;
}
.message {
padding: 40px;
font-size: 2.5em;
text-align: center;
text-shadow: 0 5px 0 #000;
}
|