-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
67 lines (64 loc) · 1.29 KB
/
main.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
table {
margin:1em auto;
}
td {
height:30px;
width:30px;
border:1px solid;
text-align:center;
background: white;
}
td:first-child {
border-left:solid;
}
td:nth-child(3n) {
border-right:solid ;
}
tr:first-child {
border-top:solid;
}
tr:nth-child(3n) td {
border-bottom:solid ;
}
td.restricted{
background: lightgreen !important;
}
.button{
font-size: 1.25em;
border: 1px solid;
border-radius: 4px;
background-color: rgb(235, 235, 235);
padding: 2px 6px;
margin: 1px;
cursor: default;
}
.buttons{
text-align: center;
}
.hidden{
display: none;
}
.container{
max-width: 600px;
padding:16px 16px;
padding-top: 24px!important;
padding-bottom: 24px!important;
margin: 10px auto;
background: white;
box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
border-radius: 10px;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;;
background-size: 40px 40px;
background-image:
linear-gradient(to right, lightgreen 2px, transparent 1px),
linear-gradient(to bottom, lightgreen 2px, honeydew 1px);
}
#solve{
background-color: lightgreen !important;
width: 3.5em;
}
#set{
padding: 2px 1em;
}