-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
140 lines (119 loc) · 2.34 KB
/
Copy pathmain.css
File metadata and controls
140 lines (119 loc) · 2.34 KB
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
128
129
130
131
132
133
134
135
136
137
138
139
140
html,
body {
padding: 0;
margin: 0;
width: 100%;
height: 100%;
}
body {
background: linear-gradient(119.36deg, #a20074 0%, #8f18b9 100%), #8f18b9;
color: #ffffff;
font-family: "Roboto", sans-serif;
}
#content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
height: 100%;
}
h1 {
font-weight: 100;
font-size: max(min(72px, 7vw), 32px);
text-align: center;
}
#middle {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-around;
width: 1000px;
max-width: 100vw;
}
.inputBox {
display: flex;
flex-direction: column;
width: min(350px, calc(50vw - 32px));
}
.inputBox label {
font-size: max(min(36px, 5vw), 24px);
font-weight: 300;
}
.inputBox input {
border: none;
border-bottom: 3px solid rgba(255, 255, 255, 0.5);
background: none;
color: rgba(255, 255, 255, 0.8);
font-size: max(min(96px, 9vw), 32px);
width: 100%;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input,
button {
outline: none;
}
input:focus {
color: #ffffff;
border-bottom: 4px solid #ffffff;
}
.button {
background: rgba(255, 255, 255, 0.8);
border-radius: 10000px;
color: #970e9d;
font-weight: 300;
font-size: max(min(36px, 5.5vw), 24px);
border: 3px solid #ffffff;
cursor: pointer;
padding: 16px 64px;
margin: 1.34em 0;
}
.button:hover {
background: #ffffff;
}
#bottom {
display: flex;
align-items: center;
justify-content: space-around;
width: 1000px;
max-width: 100vw;
}
.small label {
font-size: max(min(24px, 4.5vw), 18px);
transition: all 200ms ease;
}
.small input {
font-size: max(min(36px, 5.5vw), 18px) !important;
transition: all 200ms ease;
width: 100%;
}
.small {
width: min(112px, 100%);
transition: all 200ms ease;
margin: 0 12px;
}
.hidden {
opacity: 0 !important;
}
.noDisplay {
display: none;
}
#number {
font-size: min(64px, 12vw);
transition: all 200ms ease;
opacity: 0.5;
margin:0;
}
.largeNumber {
font-size: min(128px, 20vw) !important;
opacity: 1 !important;
transition: all 200ms ease;
}
@media only screen and (max-width: 600px) {
.button {
padding: 12px 24px;
}
}