forked from vaishnaviprakash12/Clock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (45 loc) · 788 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
@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Ubuntu', sans-serif;
color: white;
}
body {
/* background-color: #5100ff; */
background-color: black;
}
.title {
font-size: 3rem;
color: #f0ebff44;
text-align: center;
}
.box1{
margin: 20px 10px;
}
.time{
font-size: 3rem;
}
.note{
font-size: 1.5rem;
color: #f0ebff44;
margin: 20px 0px;
}
.hr{
margin: 20px 100px;
}
.box1 a{
text-decoration: none;
font-size: 1rem;
margin: 20px 0px;
border-radius: 18px;
border: solid white;
padding: 10px;
transition:1s ease-in-out;
}
.box1 a:hover{
background-color: white;
margin: 20px 0px;
color: black;
}