-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (60 loc) · 986 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
55
56
57
58
59
60
61
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root{
--bgcolor:#3d3d3d;
--mrgn:10px;
--btn:#ff9f1a;
}
.wrapper{
width: 20rem;
position: absolute;
bottom: 2rem;
left: 2rem;
background: var(--bgcolor);
border-radius: 20px;
text-align: center;
padding: 1rem 2rem;
}
.wrapper.hide{
opacity: 0;
visibility: hidden;
transition: all 2s ease-in;
}
.wrapper img{
width: 7rem;
}
.content{
padding:10px;
}
.content h1{
font-size: 2rem;
color: #fff;
font-family: monospace;
}
.content p{
font-size: 1.2rem;
color: #fff;
font-family: monospace;
margin-top: var(--mrgn);
}
.buttton{
display: flex;
justify-content: center;
align-items: center;
margin-top: var(--mrgn);
}
.buttton button{
background-color:var(--btn);
padding: 5px 10px;
outline: none;
border: none;
}
.buttton a{
color: #fff;
padding: 5px 10px;
outline: none;
border: none;
}