-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylee.css
89 lines (81 loc) · 2.13 KB
/
stylee.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family:sans-serif;
}
body{
background-image: url(/assests/bgg--image.jpg);
backdrop-filter: blur(1px);
background-size: cover;
background-position:center;
background-repeat: no-repeat;
background-attachment: fixed;
height: 100vh;
margin: 0;
}
.container{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-80%, -50%);
width: 50%;
min-width: 500px;
background-color: transparent;
padding-bottom: 40px;
border-radius: 0.6rem;
box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
rgba(0, 0, 0, 0.3) 0px 7px 13px -3px,
rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.timer-display{
color: #ffffff;
letter-spacing: 2px;
width: 100%;
background-color:transparent;
padding: 40px 0px;
display: flex;
justify-content: center;
align-items: center;
font-size: 4rem;
border-radius: 10px 10px 0 0;
font-family: 'Times New Roman';
box-shadow: rgba(0, 0, 0, 0.17) 0px -23px 25px 0px inset,
rgba(0, 0, 0, 0.15) 0px -36px 30px 0px inset,
rgba(0, 0, 0, 0.1) 0px -79px 40px 0px inset,
rgba(0, 0, 0, 0.06) 0px 2px 1px,
rgba(0, 0, 0, 0.09) 0px 4px 2px,
rgba(0, 0, 0, 0.09) 0px 8px 4px,
rgba(0, 0, 0, 0.09) 0px 16px 8px,
rgba(0, 0, 0, 0.009) 0px 32px 16px;
}
.laps{
text-align: center;
color: white;
margin-top: 20px;
text-decoration: none;
}
.action{
width: 80%;
margin: 50px auto 0 auto;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 30px;
}
.action button{
transition: all 0.2s ease;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
padding: 10px 20px;
background-color: white;
border: none;
font-size: 18px;
font-weight: 700;
border-radius: 10px;
cursor: pointer;
box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
rgba(0, 0, 0, 0.3) 0px 7px 13px -3px,
rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.action button:hover{
background-color: #a3a3a3;
}