-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (57 loc) · 1.06 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
#background{
background-image: linear-gradient(to right, red , yellow);
}
body{
font-family: "Lato", sans-serif;
background: linear-gradient(-65deg, rgba(170,110,36,1) 31%, rgba(236,168,20,1) 68%);
}
h2{
font-size: 5rem;
font-weight: bold;
padding: 1rem;
}
.countdown{
min-height: 100vh;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
text-align: center;
}
.center-text{
display: flex;
align-items: center;
flex-direction: column;
}
.count-down{
display: flex;
justify-content: space-around;
}
.day,.hour,.minute,.second{
font-size: 3rem;
}
.time{
font-size: 3rem;
}
.date{
font-size: 1.5rem;
}
.einstein-button{
background-color: rgba(236,168,20,1); /* Green */
border: none;
padding: 20px 50px;
text-align: center;
font-size: 20px;
border-radius: 50px;
opacity: 1;
transition: 0.3s;
font-weight: bold;
}
.einstein-button:hover{
background-color: rgb(189, 122, 40);
}