-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
73 lines (61 loc) · 1.09 KB
/
Copy pathstyle.css
File metadata and controls
73 lines (61 loc) · 1.09 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
@import url('https://fonts.googleapis.com/css2?family=Cantora+One&family=Poppins:wght@400;500&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body{
background: #FCBA7F;
}
.wrapper{
position: absolute;
bottom: 30px;
left: 30px;
background: #fff;
max-width: 365px;
border-radius: 15px;
padding: 25px 25px 30px 25px;
text-align: center;
}
.wrapper.hide{
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}
.wrapper img{
max-width: 90px;
}
.wrapper .content{
margin-top: 10px;
}
.content header{
font-size: 25px;
font-weight: 600;
}
.content p{
color: #858585;
margin: 5px 0 20px 0;
}
.content .buttons{
display: flex;
align-items: center;
justify-content: center;
}
.buttons .item{
margin: 0 10px;
}
.buttons button{
padding: 10px 20px;
background: #FCBA7F;
border: none;
outline: none;
font-size: 16px;
font-weight: 500;
color: #fff;
border-radius: 5px;
cursor: pointer;
}
.buttons a{
color: #FCBA7F;
}