-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (37 loc) · 692 Bytes
/
style.css
File metadata and controls
46 lines (37 loc) · 692 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
.spreadsheet {
border-collapse: collapse;
font-family: sans-serif;
font-size: 9pt;
}
.spreadsheet [contenteditable="true"]:active,
.spreadsheet [contenteditable="true"]:focus{
outline: 2px solid #00f;
margin: 0;
box-shadow: 2px 2px 10px #ccc;
}
.spreadsheet .cellcontent {
width: 100%;
height: 100%;
display:inline-block;
}
.spreadsheet .cell:focus {
}
.spreadsheet td {
// padding: 3px;
border: 1px solid #ddd;
}
.spreadsheet th {
background: black;
color: white;
border: 1px solid black;
cursor: pointer;
}
.spreadsheet th:hover {
background: #ddd;
}
.spreadsheet th.sorted:after {
content: " \25be";
}
.spreadsheet th.sorted.reversed:after {
content: " \25b4";
}