-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtable.css
58 lines (54 loc) · 979 Bytes
/
table.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
.table{
width: 100%;
text-align:left;
background: #c3cbd9;
}
h2{
text-align: center;
font-size: 2em;
}
tr{
align-items: center;
}
.btn{
align-content: center;
justify-content: center;
}
.button {
border-radius: 4px;
background-color:#800080;
border: none;
color: #FFFFFF;
text-align: center;
font-size: 20px;
padding: 15px;
width: 200px;
transition: all 0.5s;
cursor: pointer;
margin: 5px;
/* margin-left: 550px; */
}
.button span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
.button span:after {
content: '\00bb';
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
}
.button:hover span {
padding-right: 25px;
}
.button:hover span:after {
opacity: 1;
right: 0;
}
.line{
border-bottom: 1px;
}