-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
85 lines (67 loc) · 1.38 KB
/
style.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
body {
background-color: whitesmoke;
}
h1 {
text-align: center;
}
#slider {
width: 100%;
background: white;
outline: none;
transition: opacity .2s;
cursor: pointer;
}
.button-parent {
text-align: left;
align-items: left;
background-color: transparent;
position: absolute;
left: 10px;
top: 100px;
width: auto;
height: auto;
border-style: ridge;
}
button {
border-style: ridge;
text-align: center;
display: block;
max-width: 300px;
margin: 4px 2px;
cursor: pointer;
color: black;
background-color: white;
text-size-adjust: 20pt;
font-size: 30px;
}
div {
box-sizing: border-box;
}
.flex-container {
background: whitesmoke;
border: whitesmoke;
display: flex;
flex-direction: column;
align-items: center;
}
.grid-container {
display: grid;
background: darkgreen;
width: 480px;
height: 480px;
grid-area: span;
grid-template-columns: repeat(16, 1fr);
grid-template-rows: repeat(16, 1fr);
row-gap: 1px;
column-gap: 1px;
grid-template-areas: none;
cursor: crosshair;
}
.permanent-color {
background-color: black !important;
}
@media(.grid-item:hover) and (pointer:fine) {
.grid-item:hover, .grid-item:active{
background-color: black !important;
}
}