-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
127 lines (109 loc) · 1.95 KB
/
style.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
* {
font-family: Helvetica-Neue, sans-serif;
}
#app {
background-color: #1a1a1d;
height: 100%;
width: 100%;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
overflow: auto;
display: flex;
align-items: center;
flex-direction: column;
}
#heading {
font-size: 3vmax;
color: white;
}
.input-box,
hidden-input-box {
border-radius: 5%;
border: none;
margin-top: 1vh;
}
.hidden-input-box {
visibility: hidden;
}
#color-codes {
display: flex;
justify-content: space-around;
margin-top: 0.8vh;
color: white;
}
#color-codes > span {
font-size: 1vmax;
padding-right: 1vw;
padding-left: 1vw;
}
#user-inputs {
display: flex;
justify-content: space-around;
margin-top: 5vh;
margin-bottom: 10vh;
}
@media screen and (max-width: 500px) {
#user-inputs {
flex-direction: column;
margin-bottom: 5vh;
}
.hidden-input-box {
display: none;
}
}
.user-input {
display: flex;
justify-content: space-around;
flex-direction: column;
align-items: center;
margin-left: 1vw;
margin-right: 1vw;
margin-top: 5vh;
}
.user-input > input {
width: 12vmax;
height: 4vh;
font-size: 2vmax;
}
.dropdown-content {
display: none;
position: absolute;
}
.menu-button {
border: 2px solid paleturquoise;
background-color: #1a1a1d;
color: white;
font-size: 1vmax;
padding: 1.3vmax;
width: 13vmax;
border-radius: 10px;
}
.menu-button:hover {
opacity: 0.5;
cursor: pointer;
}
.dropdown-content-button,
.dropdown-button {
display: block;
border-radius: 0px;
}
.dropdown-content-button:hover {
opacity: 1;
background-color: paleturquoise;
color: black;
}
#array {
display: flex;
border: 0.25px solid gray;
flex-flow: wrap;
}
.elem {
border: 0.25px solid gray;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}