-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (71 loc) · 2.02 KB
/
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
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<style>
*{margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif;}
.main-div{
width: 100x; height: 100vh;
/*background-color: #B3E5FC;*/
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.center-div{
width: 90%;
height: 80vh;
/*background-color: #E1F5FE;*/
background: -webkit-linear-gradient(left, #5DADE2,#00c6ff);
padding: 20px 0 0 0;
box-shadow: 0 10px 20px 0 rgba(0,0,0,.03);
border-radius: 10px;
/*align-items: center;*/
}
h1{
font-size: 18px;
color: #000;
text-align: center;
margin-top: -20px;
}
table{
/*border-spacing: 5;*/
border-collapse: collapse;
background-color: #fff;
box-shadow: 0 10px 20px 0 rgba(0,0,0,.03);
border-radius: 10px;
margin: auto;
}
th,td{
border: 1px solid #f2f2f2;
padding: 8px 30px;
text-align: center;
color: grey;
}
th{
text-transform:uppercase;
font-weight: 500;
}
td{font-size: 13px; }
.email-style{
font-size: 14px;
color: grey;
display: inline-block;
background: #f2f2f2;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
line-height: 30px;
padding: 0 14px;
}
.post-class{
text-transform: uppercase;
}
.fa{
font-size: 18px;
}
.fa-edit{ color: #63c76a; }
.fa-trash{ color: #ff0000; }
a{ text-decoration: none; display: flex; justify-content: center;text-transform: uppercase;}
</style>
</head>
</html>