-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
76 lines (70 loc) · 1.44 KB
/
Copy pathstyle.css
File metadata and controls
76 lines (70 loc) · 1.44 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
*,*::after,*::before{
margin: 0;
padding: 0;
box-sizing: border-box;
}
@keyframes animate-background {
0%{
background-position: 100% 100%;
}
25%{
background-position: 350% 250%;
}
50%{
background-position: 175% 39%;
}75%{
background-position: 400% 250%;
}
100%{
background-position: 100% 150%;
}
}
html{
font-size: 62.5%;
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif ;
}
body{
background-image: linear-gradient(to right, #FFDEE9 , #B5FFFC );
background-size: 150% 200%;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
font-size: 1.6rem;
animation: animate-background 20s infinite ease-in-out;
}
.container{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 3rem;
padding: 3rem 4rem;
border-radius: 25px;
color: rgb(30, 84, 66);
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
font-size: 4.5rem;
}
.clock-day{
display: flex;
justify-content: center;
align-items: center;
gap: 2rem;
font-weight: 600;
}
.clock-time{
display: flex;
justify-content: center;
align-items: center;
gap: 2rem;
font-weight: 600;
}
.clock-style{
display: flex;
gap: 2rem;
}
@media (max-width:31.25em){
.container{
font-size: 3.5rem;
}
}