-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtabel.css
56 lines (52 loc) · 1.21 KB
/
tabel.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
@import url('https://fonts.googleapis.com/css?family=Montserrat|Open+Sans|Roboto');
*{
margin:0;
padding: 0;
outline: 0;
}
.filter{
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
z-index: 1;
/* background: rgb(233,76,161); */
/* background: -moz-linear-gradient(90deg, rgba(233,76,161,1) 0%, rgba(199,74,233,1) 100%);
background: -webkit-linear-gradient(90deg, rgba(233,76,161,1) 0%, rgba(199,74,233,1) 100%);
background: linear-gradient(90deg, rgba(233,76,161,1) 0%, rgba(199,74,233,1) 100%); */
/* filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e94ca1",endColorstr="#c74ae9",GradientType=1); */
opacity: .7;
}
table{
position: absolute;
z-index: 2;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
width: 100%;
border-collapse: collapse;
border-spacing: 0;
box-shadow: 0 2px 15px rgba(64,64,64,.7);
border-radius: 12px 12px 0 0;
overflow: hidden;
}
td , th{
padding: 20px 50px;
text-align: center;
}
th{
background-color: #02143f;
color: #fafafa;
font-family: 'Open Sans',Sans-serif;
font-weight: 200;
text-transform: uppercase;
}
tr{
width: 100%;
background-color: #fafafa;
font-family: 'Montserrat', sans-serif;
}
tr:nth-child(even){
background-color: #eeeeee;
}