-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (72 loc) · 1.55 KB
/
style.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
* {
padding: 0;
margin: 0;
font-family: "poppins", sans-serif;
box-sizing: border-box;
}
.container {
width: 100%;
height: 100vh;
background: rgb(21, 21, 37);
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.time h1 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #eee;
font-size: 90px;
font-weight: 600;
letter-spacing: 3px;
padding: 50px;
border-radius: 12px;
background: rgb(21, 21, 37);
box-shadow: 10px 0px 95px blue, -10px 0px 95px rgb(247, 43, 16);
background: -webkit-linear-gradient(55deg, rgb(250, 86, 64), rgb(102, 102, 255) 80%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin: 0;
}
.time #day {
position: absolute;
bottom: 35%;
left: 45%;
color: rgba(199, 55, 175, 0.9);
font-size: 20px;
padding: 10px;
}
.time #day2 {
position: absolute;
bottom: 35%;
left: 49%;
color: rgba(199, 55, 175, 0.9);
font-size: 20px;
padding: 10px;
}
.time #day3 {
position: absolute;
bottom: 35%;
left: 57%;
color: rgba(199, 55, 175, 0.9);
font-size: 20px;
padding: 10px;
}
.quotes {
width: 100%;
position: absolute;
text-align: center;
top: 110px;
color: rgb(255, 255, 255);
font-size: 20px;
font-weight: 500px;
}
.quotes h2 {
font-size: 55px;
margin-top: 0px;
padding-top: 0px;
font-weight: 500px;
}