-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
112 lines (97 loc) · 1.88 KB
/
Copy pathstyle.css
File metadata and controls
112 lines (97 loc) · 1.88 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
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-user-drag: none;
user-select: none;
}
html {
font-size: 62.5%;
scroll-behavior: smooth;
text-rendering: optimizeLegibility;
}
body {
font-family: "Poppins", sans-serif;
overflow-x: hidden;
}
#stopwatchSection {
width: 100%;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background: linear-gradient(270deg, #1dd881 0%, #51ffae 74%);
}
.container {
width: 50rem;
min-height: 35rem;
margin: 2.5rem auto;
padding: 3rem 3.5rem;
border: 0.4rem solid #296e6e;
border-radius: 0.4rem;
box-shadow: 0.3rem 0.5rem 1.3rem 0rem #1f1f1f;
display: grid;
grid-template: repeat(1/ 1fr) / repeat(2, 1fr);
grid-gap: 2rem;
background: #033333;
}
.display {
font-size: 5rem;
font-weight: 500;
color: #fff;
text-align: center;
padding: 3rem 0rem;
}
.controls {
width: calc(100% - 3rem);
margin: auto;
display: flex;
align-items: center;
justify-content: space-around;
}
.btn {
font-size: 1.4rem;
padding: 1rem 3rem;
color: #fff;
border-radius: 0.5rem;
cursor: pointer;
transition: all 0.3s;
outline: none;
border-width: 0.2rem;
border-style: solid;
}
.btn-start {
background: #1dd881;
border-color: #1dd881;
}
.btn-pause {
background: #51ffae;
border-color: #51ffae;
}
.btn-reset {
background: #ff523b;
border-color: #ff523b;
}
.btn:hover {
background: transparent;
}
.author-text {
color: #121212;
padding: 1rem 0rem;
text-align: center;
}
.author-text p {
font-size: 1.4rem;
text-transform: capitalize;
}
.author-text p a {
color: #121212;
text-decoration: none;
transition: all 0.3s;
}
.author-text p a:hover {
text-decoration: underline;
}