-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin_page.css
58 lines (50 loc) · 935 Bytes
/
admin_page.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
*{
font-family: 'Poppins',sans-serif;
margin: 0;
padding: 0;
outline: none;
box-sizing: border-box;
border: none;
text-decoration: none;
}
.container{
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding:20px;
padding-bottom: 60px;
}
.container .content h3{
font-size:30px;
color:#333;
}
.container .content h3 span{
background: crimson;
color:#fff;
border-radius: 5px;
padding: 0 15px;
}
.container .content h1{
font-size:50px;
color:#333;
}
.container .content h1 span{
color:crimson;
}
.container .content p{
font-size:25px;
margin-bottom: 20px;
}
.container .content .btn{
display: inline-block;
padding:10px 30px;
font-size:20px;
background: #333;
color:#fff;
margin: 0 5px;
text-transform: capitalize;
}
.container .content .btn:hover{
background: crimson;
}