-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessage.css
44 lines (39 loc) · 809 Bytes
/
message.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
@import url('https://fonts.googleaplis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
* {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
}
body {
background: rgb(15, 15, 15);
color: #fff;
}
p {
color: #fff;
text-align: center;
padding-top: 100px;
padding-bottom: 20px;
font-size: 30px;
}
.messageBox{
max-width: 300px;
margin: auto;
background: rgba(0, 0, 0, 0.205);
height:300px;
padding-top: 10px;
padding-left:10px;
border-radius:5%;
border: 1px solid rgb(49, 49, 49);
color:rgb(255, 255, 255);
}
.content {
align-items: center;
justify-content: center;
padding: 10px 0;
}
.return {
position: block;
color: #fff;
text-align: center;
font-size: 15px;
}