blob: 9cd2a2f92327f09ba75abbf974ef06c9d1bbabe0 (
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
|
* {
font-family: 'Montserrat', sans-serif;
}
html, body {
margin: 0;
padding: 0;
min-width: 100vw;
min-height: 100vh;
display: block;
}
body {
display: flex;
align-items: center;
justify-content: center;
background-color: var(--main-bg);
}
div.content {
padding: 20px;
background-color: var(--gui-bg-main);
border-radius: 10px;
display: flex;
text-align: center;
flex-direction: column;
align-items: center;
width: min-content;
}
a, button {
font-size: 1em;
display: block;
color: white;
box-sizing: border-box;
border-radius: 5px;
border: none;
padding: 5px;
background-color: #0084ff;
transition-duration: 0.2s;
text-decoration: none;
margin-top: 10px;
}
div.content > div.prev {
width: 100%;
margin: 10px;
display: block;
padding: 0;
}
div.prev > a{
display: inline-block;
width: 80%;
margin: 0;
padding: 5px;
border-radius: 0;
text-align: left;
}
div.prev > a:first-of-type {
border-top-left-radius: 5px;
}
div.prev > a:last-of-type {
border-bottom-left-radius: 5px;
}
div.prev > button {
display: inline-block;
width: 20%;
margin: 0;
background-color: #ff1e00;
padding: 5px;
border-radius: 0;
}
div.prev > button:first-of-type {
border-top-right-radius: 5px;
}
div.prev > button:last-of-type {
border-bottom-right-radius: 5px;
}
div.prev > button:hover {
background-color: #ff5741;
}
div.prev > button:active {
background-color: #9c1200;
}
|