forked from apelmon1/Table
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
63 lines (57 loc) · 918 Bytes
/
main.css
File metadata and controls
63 lines (57 loc) · 918 Bytes
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
#table {
border: 1px #4cabe3 solid;
position:fixed;
border-spacing:1px;
top:100px;
left:100px;
}
#table td {
background-color:#4cabe3;
height:50px;
width:50px;
}
#addRow {
background-color:#f1a418;
}
#deleteCell {
display:none;
background-color:#b20002;
border-bottom:3px white solid;
}
#addCell {
background-color:#f1a418;
}
#deleteRow {
display:none;
background-color:#b20002;
border-right:3px white solid;
}
.verticalStrip{
position:relative;
top:15px;
left:23px;
height:14px;
width:3px;
background-color:white;
border-radius:2px;
}
.horizontalStrip{
position:relative;
top:24px;
left:17px;
background-color:white;
height:3px;
width:15px;
border-radius:2px;
}
.button {
position:fixed;
height:50px;
width:50px;
cursor: pointer;
transition-property: opacity;
transition-duration: 3s ;
}
.button:hover{
opacity:0.5;
}