-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
54 lines (54 loc) · 1013 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
:root{
--heart-color:#ff5873;
--background-color: #ebc8c0;
--white:#fff;
}
body{
font-family: Tahoma;
background-color: var(--background-color);
margin:0;
padding:0;
display:flex;
justify-content: center;
align-items: center;
height: 100vh;
flex-direction: column;
color:var(--heart-color);
background-image:url('images/mini-hearth.png');
background-size: 75%;
}
.card{
text-align: center;
}
.title{
font-size: 28px;
}
.animation{
width: 280px;
display: inline-block;
}
.img-fluid{
width: 100%;
height: auto;
}
.text{
padding:20px;
font-size:18px;
}
.button{
background: var(--heart-color);
color:var(--white);
border: 0 none;
padding:10px 30px;
text-align: center;
display: inline-block;
margin:0 10px;
}
.button.button__negative{
background: var(--white);
color: var(--heart-color);
}
.button.button__error{
width: 100%;
display: none;
}