-
Notifications
You must be signed in to change notification settings - Fork 0
/
wap.css
70 lines (56 loc) · 1.08 KB
/
wap.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
59
60
61
62
63
64
65
66
67
68
69
table {
/*border-collapse: collapse;*/
border-spacing: 0;
}
table, th, td {
border: 1px solid gray;
}
#container { /*for demo purpose only*/
padding: 20px;
}
.wapCalc { /*entire top-level element (table+input+button+help)*/
padding:20px;
margin: 10px;
border: 1px dotted black;
float:right;
}
.wapTable { /*table*/
float:right;
}
.activeWc { /*active top-level element*/
border: 2px solid black;
background-color: #e6e6ff
}
.wapRowHeader, .wapColHeader { /*table headers*/
text-align:center;
vertical-align:middle;
}
.wapRow { /*table row*/
height: 50px;
}
.wapCell { /*table cell*/
width: 500px;
background-color: white;
text-align:center;
vertical-align:middle;
}
.selected{ /*table's selected cells*/
background-color: #ffcccc;
}
.currentCell { /*table's current cell*/
border: 3px solid purple;
}
.ciInput { /*cell input style*/
margin-bottom: 10px;
height: 30px;
width: 60%;
float:right;
border: 1px solid black;
padding-left: 10px;
}
.delBtn { /*delete button style*/
width: 20%;
height: 33px;
background-color: white;
border: 1px dotted black;
}