-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
102 lines (89 loc) · 1.59 KB
/
styles.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
body {
text-align: center;
background-color: black;
background-position: center;
transition: 0.1s;
font-family: Helvetica, sans-serif;
margin: 3vw auto;
width: 95vw;
min-width: 400px;
}
.box {
background-color: #2D2D2D;
height: 2.2vw;
width: 2.2vw;
display: inline-block;
border-radius: 2.2vw;
margin: 0.1vw;
}
.color-picker {
display: block;
width: 100%;
height: 15vw;
text-align: center;
display: flex;
align-items: center;
justify-content: flex-start;
color: white;
}
.cyan {
background-color: #1ebacc;
color: #1ebacc;
}
.yellow {
background-color: #ffea4e;
color: #ffea4e;
}
.magenta {
background-color: #ff2f9e;
color: #ff2f9e;
}
.select-color {
display: flex;
align-items: center;
justify-content: center;
background-color: black;
height: 6vw;
width: 17vw;
font-size: 2.65vw;
font-weight: bold;
letter-spacing: 0.2em;
}
.select-color.cyan {
margin: 0 3vw;
border-bottom: 1vw solid #1ebacc;
}
.select-color.yellow {
border-bottom: 1vw solid #ffea4e;
}
.select-color.magenta {
margin: 0 3vw;
border-bottom: 1vw solid #ff2f9e;
}
.not-selected{
color: #2D2D2D;
border-bottom: 1vw solid #2D2D2D !important;
}
.toggle-blink {
display: flex;
align-items: center;
justify-content: center;
margin-left: auto;
color: white;
font-weight: bold;
height: 6vw;
width: 20vw;
border-radius: 0;
opacity: 0.7;
background-color: black;
text-transform: uppercase;
letter-spacing: 0.2em;
border: 0.5vw dotted white !important;
font-size: 2.75vw;
}
.opacity {
opacity: 1 !important;
}
.blink {
opacity: 0.7;
}