-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
50 lines (44 loc) · 966 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
* {
margin: 0;
padding: 0;
}
html, body {margin: 0; height: 100%; overflow: hidden}
body{
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
background: linear-gradient(120deg, #155799, #159957);
}
.title{
position: absolute;
top: 36vh;
left: 50vw;
width: 100%;
transform: translateY(-50%) translateX(-50%);
text-align: center;
font-size: 4vh;
font-weight: bold;
color: white;
}
.button-fact{
position: absolute;
top: 50vh;
left: 50vw;
transform: translateY(-50%) translateX(-50%);
height: 7vh;
font-size: 2.2vh;
border-radius: 0.8vh;
width: 90vw;
display: flex;
justify-content: center;
align-items: center;
border: #bedbd964 1px solid;
background-color: #b6d2d017;
cursor: pointer;
color: #BEDBD9;
font-weight: 500;
}
.button-fact:hover{
background-color: #b6d2d066;
}
.cat-emoji{
transform: translateY(8px);
}