-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (39 loc) · 1.14 KB
/
style.css
File metadata and controls
41 lines (39 loc) · 1.14 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
*{
margin: 0%;
padding: 0%;
box-sizing: border-box;
}
.container{
height:46rem;
width: 100%;
display: flex;
background-image: url(https://images.unsplash.com/photo-1563387852576-964bc31b73af?q=80&w=2107&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
background-size: cover;
background-position:center ;
justify-content: center;
align-items: center;
}
.clock{
height:15rem;
width: 45rem;
display: flex;
justify-content: center;
align-items: center;
background-color:rgba(89, 131, 83,0.09);
backdrop-filter: blur(15px);
border-radius: 40px;
}
h1{
font-size: 100px;
font-family:"Nabla" , system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
@media screen and (max-width:490px) {
h1{
font-size: 60px;
font-family:"Nabla" , system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.clock{
height: 10rem;
width: 35rem;
}
}