blob: 59df15580b511cb2c6ffff7e0c9576469a8ad5df (
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
|
html, body {
height: 100%;
width: 100%;
background-color: #222;
margin: 0;
padding: 0;
}
main {
position: fixed;
overflow: auto;
padding: 20px;
inset: 0;
color: white;
}
.grid-3 {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 20px;
}
.grid-2 {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 20px;
}
.button {
color: inherit;
text-decoration: inherit;
transform: scale(1);
opacity: 1;
transition: transform 200ms;
}
.button:hover {
opacity: .5;
}
.button:active {
transform: scale(.95);
}
.tagline {
opacity: .5;
margin-top: 0;
}
a {
color: #ffa0a0;
}
a:hover {
opacity: .75;
}
a:focus, a:active {
opacity: .5;
}
.hr-style-01 {
border-bottom: none;
border-top: 1px solid white;
}
.big-button {
transition: color 200ms, background 200ms, opacity 200ms;
color: white;
background: #333;
border: 1px solid white;
padding: 10px 20px;
text-decoration: none;
margin-top: 10px;
opacity: 1 !important;
border-radius: 5px;
}
.big-button:hover {
color: #333;
background: white;
}
.big-button:active {
opacity: .5 !important;
}
.stand {
padding: 5px;
margin-left: -20px;
margin-right: -20px;
background: #333;
}
.stand-strong {
padding: 20px;
}
|