-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (50 loc) · 1.01 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
* {
margin: 0;
padding: 0;
}
body {
width: 100%;
height: 100vh;
background-image: url(images/2345540.png);
background-position: center;
background-size: cover;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
justify-content: center;
align-items: center;
display: flex;
}
.heading_container {
padding: 1rem;
max-width: 300px;
flex-direction:inherit;
position: relative;
border-radius: 10px;
background-color: rgba(0, 0, 0, 0.6);
}
.stopwatch_container {
padding: 1rem;
max-width: 300px;
text-align: center;
position: relative;
border-radius: 10px;
background-color: rgba(0, 0, 0, 0.6);
}
.time {
text-align: center;
padding: 1rem 0;
font-size: 2rem;
}
h1,
p {
color: #f8f8f8;
}
button {
padding: 0.4rem 1rem;
margin: 0 0.2rem;
border-radius: 10px;
border: 1px solid #f8f8f8;
}
button:hover {
background-color: rgba(0, 0, 0, 0.4);
color: #f8f8f8;
}