Newer
Older
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
.vote {
font-family: 'Arimo', sans-serif;
text-align: center;
user-select: none;
cursor: default;
//position: absolute;
//top: 50%;
//left: 50%;
//transform: translate(-50%, -50%);
}
.vote__columns {
display: flex;
align-items: center;
justify-content: center;
}
.vote__column {
height: 62px;
font-size: 42px;
overflow: hidden;
}
.button_64 {
align-items: center;
background-image: linear-gradient(144deg,#AF40FF, #5B42F3 50%,#00DDEB);
border: 0;
border-radius: 8px;
box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
box-sizing: border-box;
color: #FFFFFF;
display: flex;
font-family: Phantomsans, sans-serif;
font-size: 20px;
justify-content: center;
line-height: 1em;
max-width: 100%;
min-width: 50px;
padding: 3px;
text-decoration: none;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
white-space: nowrap;
cursor: pointer;
}
.button_64:active,
.button_64:hover {
outline: 0;
}
.button_64 span {
background-color: rgb(5, 6, 45);
padding: 16px 24px;
border-radius: 6px;
width: 100%;
height: 100%;
transition: 300ms;
}
.button_64:hover span {
background: none;
}
@media (min-width: 768px) {
.button_64 {
font-size: 24px;
min-width: 196px;
}
}