-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (76 loc) · 1.13 KB
/
Copy pathstyle.css
File metadata and controls
89 lines (76 loc) · 1.13 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<
*{margin:0;
padding=0;
box-sizing:border-box;
font-family:'Montserrat';
}
.main-div{
width:100% height:100vh;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
}
.center-div{
width:90%;
height:80vh;
background: -webkit-linear-gradient(red, yellow);
padding:20px 0 0 0;
box-shadow: 0 10px 20px 0 rgba(0,0,0,.03);
border-radius:10px;
}
h1{
font-size:18px;
color:#000;
text-align:center;
margin-top:-20px;
margin-bottom:20px;
}
table{
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;}
</style>
</head>
</html>