-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
91 lines (91 loc) · 1.73 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
height: 100vh;
width: 100%;
}
.watch-container{
width: 100%;
min-height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.watch-container p{
padding: 5px;
letter-spacing: 1px;
font-size: 72px;
box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.watch-container p span{
box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
}
.clock-button{
cursor: pointer;
text-decoration: none;
border: none;
padding: 10px;
margin: 5px;
color: white;
border-radius: 5px;
min-width: 170px;
font-size: 20px;
box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
#startBtn{
background-color: green;
}
#stopBtn{
background-color: red;
display: none;
}
#reset{
background-color: darkgrey;
}
.min-width{
display: inline-block;
min-width: 100px;
text-align: center;
font-size: 70px;
padding: 10px;
}
.stopwatch-buttons{
margin-top: 20px;
}
.input-items{
display: flex;
margin: 10px;
box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.input-box{
width: 108px;
height: 65px;
margin: 5px;
padding:5px;
font-size: 40px;
border: none;
outline: none;
box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
}
.input-group{
display: flex;
flex-direction: column;
}
.input-label{
margin: 5px;
font-size: 30px;
}
#outputContainer{
display: none;
}
.project-heading{
margin-bottom: 60px;
}
.project-heading h1{
text-transform: capitalize;
font-size: 40px;
}