-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (43 loc) · 1.15 KB
/
Copy pathstyle.css
File metadata and controls
51 lines (43 loc) · 1.15 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
*{
margin: 0px;
padding: 0px;
}
.container{
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
height: 100vh;
background-color: rgb(60, 60, 60) ;
/* background-image:url("https://collegeinfogeek.com/wp-content/uploads/2019/06/best-time-tracking-apps-featured-image.jpg"); */
background-position: center;
background-size: cover;
background-clip:padding-box;
}
.hours, .minutes, .seconds, .am_or_pm{
width: 3em;
height: 3em;
padding: 1em;
margin: 1em;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
background: rgba( 255, 255, 255, 0.1 );
box-shadow: 3px 3px 9px #1a1a45, -3px -3px 9px #5e52ff;
backdrop-filter: blur( 5px );
-webkit-backdrop-filter: blur( 5px );
border-radius: 20px;
border: 1px solid rgba( 255, 255, 255, 0.18 );
font-size: 1.8em;
font-family: 'Tourney', sans-serif;
color: white;
}
.box{
text-align: center;
}
.box > h1{
color: white;
font-size: 1.4em;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}