-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (49 loc) · 843 Bytes
/
Copy pathstyle.css
File metadata and controls
57 lines (49 loc) · 843 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
* {
font-family: cursive;
text-align: center;
margin: 0;
padding: 0;
}
h1 {
margin-top: 30px;
margin-bottom: 30px;
text-decoration: line-through;
}
h3 {
margin-top: 20px;
margin-bottom: 20px;
color: rgb(3, 13, 107);
}
.input-submit {
border-radius: 5px;
width: 70px;
height: 30px;
font-size: medium;
font-family: cursive;
cursor: pointer;
}
.color-picker {
margin-bottom: 20px;
cursor: pointer;
}
table,
tr,
td {
border: rgb(0, 0, 0) 1px solid;
}
.grid-canvas {
background-color: white;
cursor: pointer;
}
/* 'border-collapse' CSS property specifies whether a table's cells have shared or separate borders; 'collapse' value causes cells to have shared borders */
table {
border-collapse: collapse;
margin: auto;
}
tr {
height: 20px;
}
td {
min-width: 20px;
box-sizing: border-box;
}