-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
66 lines (62 loc) · 1.12 KB
/
Copy pathstyle.css
File metadata and controls
66 lines (62 loc) · 1.12 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
table {
margin-left: auto;
margin-right: auto;
width: 900px;
height: 350px;
table-layout: fixed;
background-color: #000000;
table-layout: fixed;
transition: all ease 1s;
}
td,
th {
height: 50px;
padding: 11px;
text-align: center;
}
thead tr {
background-color: #00875D;
color: #ffffff;
}
tbody tr:nth-child(2n) {
background-color: #ffffff;
}
tbody tr:nth-child(2n+1) {
background-color: #cacaca;
}
#gen{
border-radius: 10px;
font-weight: bold;
font-size: 20;
border: 5px solid green;
background-color: rgba(0,0,0,0);
color: green;
padding: 15px 30px;
}
.footer {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
padding: 70px 0;
text-align: center;
color: rgb(255, 255, 255);
background: rgb(39, 102, 86);
}
.arrow{
position: relative;
}
.arrow::after{
content:"";
display: block;
width:10px;
height:10px;
border-top:4px solid #333;
border-right:4px solid #333;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
position: absolute;
right:10px;
top:50%;
margin-top:-7px;
}