-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
121 lines (120 loc) · 2.3 KB
/
Copy pathstyle.css
File metadata and controls
121 lines (120 loc) · 2.3 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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;500;700;900&display=swap');
*{
margin: 0;
padding: 0;
}
html{
font-family: 'Roboto', sans-serif;
}
body{
background-color: #1D1D23;
height: 100vh;
}
header{
color: #FFFFFF;
text-align: center;
font-size: 2.25rem;
font-style: normal;
font-weight: 700;
line-height: normal;
margin: 1rem 0;
}
.container{
display: flex;
flex-direction: column;
justify-content:center;
}
.timer-container{
display: flex;
flex-direction: column;
justify-content: center;
overflow-y: scroll;
align-items: center;
}
.timer-container::-webkit-scrollbar {
display: none;
}
p{
color: #FFFFFF;
}
.timer-inputs span{
color: #FFFFFF;
}
input[type=number]{
outline: none;
color: #FFFFFF;
text-align: center;
background-color:transparent;
width: 36px;
font-size: 1.25rem;
border: none;
border-bottom:2px solid #FFFFFF;
}
input[type=number]::placeholder{
color: #FFFFFF;
text-align: center;
}
/* number input filed disable increment */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
margin: 0;
}
.timer-box{
display: flex;
width: 400px;
height: 50px;
background-color:#34344A;
margin: 0.8rem 0;
padding: 0.5rem 1rem;
border-radius:8px;
justify-content:center;
align-items: center;
justify-content: space-between;
}
.timer-box p{
width: 80px;
}
.timer-box.time-up{
background-color: #F0F757;
color: #34344A;
font-size: 1.8rem;
font-weight: 700;
}
input.btn{
background-color: #F0F757;
color: #34344A;
height: 30px;
border: 1px solid #F0F757;
outline: none;
border-radius: 16px;
width: 70px;
cursor: pointer;
font-weight: 600;
}
input.btn.time-up-btn{
background-color:#34344A;
color: white;
}
.marker{
background-color: #39393E;
width: 200px;
height:20px;
border-radius: 16px;
text-align: center;
color: #FFFFFF;
padding: 0.3rem;
margin: 1rem 0;
}
.time-left span{
color: #FFFFFF;
font-size: 1.25rem;
}
#t-update{
margin: 1rem; /* need to be diplay none*/
}
#active-timers{
max-height: 59vh;
}