forked from codecon-dev/code-kata-timer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.scss
More file actions
62 lines (53 loc) · 1.1 KB
/
style.scss
File metadata and controls
62 lines (53 loc) · 1.1 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
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap");
$background-color: #1e1e1e;
$primary-color: #46ffbe;
body {
background-color: $background-color;
font-family: "Orbitron", sans-serif;
font-optical-sizing: auto;
font-style: normal;
color: $primary-color;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
.input-stopwatch {
display: flex;
font-size: 112px;
input {
font-family: "Orbitron", sans-serif;
font-size: 112px;
width: 180px;
background-color: transparent;
border: none;
color: $primary-color;
}
}
button {
background-color: transparent;
border: 1px solid white;
width: 32px;
height: 32px;
border-radius: 99px;
display: flex;
align-items: center;
justify-content: center;
}
.button-wrapper {
display: flex;
flex-direction: row;
gap: 32px;
}
.hide {
display: none !important;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
input[type="number"] {
-moz-appearance: textfield;
}