-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
80 lines (74 loc) · 1.52 KB
/
style.css
File metadata and controls
80 lines (74 loc) · 1.52 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
77
78
79
80
* {
margin: 0;
padding: 0;
}
body {
background-color: black;
}
.container {
display: flex;
justify-content: center;
margin-top: 20vh;
height: 30vh;
width: 310px;
margin-left: 40%;
background: linear-gradient(135deg, aqua, yellow, green, red, pink);
border-radius: 20px;
animation: waves 3s linear infinite;
box-shadow: 0px 0px 40px 20px #0ff;
}
.clock {
display: flex;
justify-content: center;
align-items: center;
font-size: 450%;
width: 91%;
border-radius: 11px;
background-color: black;
height: 81%;
margin-top: 11px;
}
#time {
color: white;
background: linear-gradient(135deg, aqua, yellow, green, red, pink);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
@keyframes waves {
100% {
filter: hue-rotate(360deg);
}
}
footer{
display: flex;
justify-content: center;
text-align: center;
background: black;
color: white;
position: absolute;
bottom: 0;
width: 100%;
font-size: 3vw;
}
h1 code{
color: white;
font-size: 6vw;
display: flex;
justify-content: center;
text-align: center;
}
@media screen and (max-width: 400px){
footer{
font-size: 10vw;
}
h1 code{
padding-top: 5%;
font-size: 13vw;
}
}
@media screen and (max-width:1000px) {
.container {
margin: auto;
margin-top: 35%;
}
}