-
Notifications
You must be signed in to change notification settings - Fork 1
/
site.css
102 lines (84 loc) · 1.36 KB
/
site.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
html {
background-color: #000;
color: #fff;
font-size: 1rem;
}
.app-area {
text-align: center;
height: 100%;
padding-top: 32px;
padding-left: 15%;
padding-right: 15%;
}
* {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
}
h1 {
font-size: 2.75rem;
line-height: 2.5rem;
}
p {
font-size: 1.25rem;
line-height: 2rem;
}
a {
color: white;
}
small {
line-height: 2rem;
color: #666666;
}
.button-group {
margin-top: 8px;
display: block;
}
.button {
background-color: #333;
color: white;
text-decoration: none;
font-size: 1.2rem;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
vertical-align: middle;
border-radius: 4px;
margin-left: 4px;
margin-right: 4px;
}
.button:hover {
background-color: #555;
}
.button.disabled {
opacity: 0.75;
}
.button.disabled:hover {
background-color: #444;
}
.matrix {
background-color: #03b381;
}
.matrix:hover {
background-color: #35c29a;
}
.telegram {
background-color: #0088cc;
}
.telegram:hover {
background-color: #33a0d6;
}
.discord {
background-color: #7289da;
}
.discord:hover {
background-color: #9cace5;
}
@media (max-width: 768px) {
.app-area {
padding: 12px 20px;
}
.app-area p {
text-align: left;
}
}