-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.css
119 lines (101 loc) · 2.03 KB
/
app.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.red-text {
margin:12px auto;
color:#e91414;
padding: 6px 0;
font-size: 1.1rem;
}
#main {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.d_flex {
display: flex;
justify-content: center;
align-items: center;
}
.text_center {
text-align: center;
}
.times_inputs {
color: #666;
font-size: 1.2rem;
}
.times_inputs input {
border: 1px solid #ccc;
padding: 15px 10px;
border-radius: 5px;
margin: 10px 6px;
}
.btn {
border: none;
box-shadow: 0 1px 1px #333;
margin: 0 3px;
border-radius: 6px;
padding: 14px 12px;
min-width: 100px;
display: inline-block;
cursor: pointer;
font-size: 1rem;
}
.btn:disabled {
opacity: 0.5;
}
.btn_start {
background-color: #00ff00;
}
.btn_pause_resume {
background-color: #6db4f7;
display: none;
}
.btn_stop {
background-color: #e42828;
color: #fff;
display: none;
}
.btn_reset {
background-color: #ffee00;
display: none;
}
.progressbar_container {
position: relative;
width: 50%;
height: 14px;
margin: 45px auto 10px;
background-color: #eeeeee;
border-radius: 10px;
overflow: hidden;
}
.progressbar_container .progressbar {
background-color: rgb(0, 150, 0);
height: 100%;
width: 100%;
position: absolute;
left: 0;
top: 0;
bottom: 0;
-webkit-transition: width 0.5s ease-in-out , background-color 0.6s ease-in-out;
-moz-transition: width 0.5s ease-in-out , background-color 0.6s ease-in-out;
-o-transition: width 0.5s ease-in-out , background-color 0.6s ease-in-out;
transition: width 0.5s ease-in-out , background-color 0.6s ease-in-out;
}
.progressbar_container .progressbar.middle {
background-color: #ddf508;
}
.progressbar_container .progressbar.low {
background-color: #ff2f2f;
}
.myGithub {
display: inline-block;
margin-top: 65px;
}
.myGithub img {
max-width: 30px;
}