-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
123 lines (109 loc) · 2.49 KB
/
style.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
120
121
122
123
#main {
width: 80%;
margin: auto;
}
.options {
/*height: 10vh;*/
width: 100%;
margin: auto;
margin-top: 2vh;
margin-bottom: 5vh;
padding: 2vh;
border-style: solid;
border-width: thin;
border-color: #CCCCCC;
background-color: #F4F4F4;
display:flex;
flex-wrap: wrap;
align-items:center;
justify-content:center;
}
label {
font-family: Arial, Helvetica, sans-serif;
font-size: 24px;
margin: 1vh;
}
#note {
height: 35vh;
width: 100%;
padding: 2vh;
margin: auto;
border-style: solid;
border-width: thin;
border-color: #CCCCCC;
background-color: #F4F4F4;
display:flex;
align-items:center;
justify-content:center;
font-size: 20vh
}
h1, h3 {
font-family: Arial, Helvetica, sans-serif;
}
.break {
flex-basis: 100%;
height: 0;
}
#durationText {
}
.startbutton {
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 24px;
}
.stopbutton {
background-color: #DC143C; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 24px;
}
.startbutton:active, .stopbutton:active {
font-weight: bold;
}
button::before {
display: block;
content: attr(title);
font-weight: bold;
height: 0;
overflow: hidden;
visibility: hidden;
}
.slider {
-webkit-appearance: none; /* Override default CSS styles */
appearance: none;
width: 75%; /* Full-width */
height: 25px; /* Specified height */
background: #03254C; /* Grey background */
outline: none; /* Remove outline */
opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
-webkit-transition: .2s; /* 0.2 seconds transition on hover */
transition: opacity .2s;
}
/* Mouse-over effects */
.slider:hover {
opacity: 1; /* Fully shown on mouse-over */
}
/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
-webkit-appearance: none; /* Override default look */
appearance: none;
width: 25px; /* Set a specific slider handle width */
height: 25px; /* Slider handle height */
background: #FFFFFF; /* Green background */
cursor: pointer; /* Cursor on hover */
}
.slider::-moz-range-thumb {
width: 25px; /* Set a specific slider handle width */
height: 25px; /* Slider handle height */
background: #FFFFFF; /* Green background */
cursor: pointer; /* Cursor on hover */
}