-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (44 loc) · 871 Bytes
/
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background: linear-gradient(to right,rgb(14, 76, 76), rgb(142, 27, 113)) ;
font-family: 'Odibee Sans', cursive;
height: 100vh;
}
.container{
height: 50rem;
box-shadow: 0 5rem 5rem -4rem rgb(145, 12, 12);
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
text-shadow: 5px 5px 5px #e8eff0;
}
#header{
font-size: 2rem;
position: absolute;
margin-left: 230px;
margin-top: 150px;
}
#clock{
position: absolute;
top: 310px;
margin-left: 60px;
font-size: 10rem;
}
#greet{
position: absolute;
bottom: 50px;
margin-left: 85px;
margin-bottom: 20px;
font-size: 2rem;
text-shadow: 2px 2px 5px #e8eff0;
}
img{
height: 50rem;
width: 40rem;
border-radius: 20px;
}