-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathluckyNumberStyles.css
More file actions
56 lines (48 loc) · 1.03 KB
/
luckyNumberStyles.css
File metadata and controls
56 lines (48 loc) · 1.03 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
html {
font-size: 10px;
}
.header {
font-family: 'Great Warrior';
font-size: clamp(3.5rem, 6vw, 9rem);
}
.form-container {
font-size: 2.6rem;
font-weight: bold;
margin-top: 3.2rem;
}
@media screen and (max-width: 700px) {
.form-container {
font-size: 2rem;
}
}
form {
display: flex;
align-items: center;
flex-direction: column;
}
input {
background-color: transparent;
height: 4rem;
width: 6.5rem;
background: transparent;
border: 0.1rem solid var(--inkBlack);
font-size: 2.4rem;
font-weight: bold;
text-align: center;
border-radius: 1.8rem;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
input:focus {
outline: none;
border: 0.1rem solid var(--peachyPink); /* Changes border color */
}
@media (prefers-color-scheme: dark) {
input:focus {
outline: none;
border: 0.1rem solid var(--warmWhite); /* Changes border color */
}
}