-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (51 loc) · 1019 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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
body{
background-color: #A39FC8;
}
*{
font-family: Poppins;
}
.clock{
position: relative;
color: black;
font-size: 90px;
bottom: -50px;
}
.box{
position: relative;
background-color: white;
height: 80px;
width: 85px;
border: none;
font-size: 20px;
bottom: -50px;
cursor: pointer;
display: inline-block;
box-shadow: 0 0 .3em rgb(0, 0, 0);
border-radius: 5px;
}
.box:hover{
background-color: rgba(255, 255, 255, 0.589);
}
.ibtn{
width: 70px;
height: 70px;
}
.searchbar{
position: relative;
border-radius: 5px;
bottom: -220px;
width: 23%;
height: 30px;
box-shadow: 0 0 .3em rgb(0, 0, 0);
border: none;
outline: none;
cursor: text;
top: 30px;
}
.data{
font-size: 40px;
position: relative;
text-align: center;
bottom: 280px;
}