-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
114 lines (96 loc) · 1.46 KB
/
styles.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/* Resets */
*,
*::before,
*::after {
box-sizing: border-box;
}
* {
margin: 0;
}
body {
line-height: 1.5;
-webkit-font-smoothing: antialiased;
background-color: #e3e3e3;
}
img,
picture,
video,
canvas,
svg {
display: block;
max-width: 100%;
}
/* container style */
header {
padding: 8px;
text-align: center;
border-bottom: 4px solid #aaa;
}
.container {
display: flex;
}
.grid-container {
flex: 4;
display: flex;
justify-content: center;
align-items: center;
}
.grid {
width: 600px;
height: 600px;
margin: 16px auto 16px;
background-color: #fff;
display: flex;
}
.menu {
background-color: #dfdfdf;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
flex: 1;
border-right: 4px solid #aaa;
}
.col {
flex: auto;
display: flex;
flex-direction: column;
}
.cell {
flex: auto;
}
.cell__border {
border: 1px solid #aaa;
}
button {
border: none;
font-size: 1rem;
cursor: pointer;
width: 90%;
margin: 4px 4px;
padding: 12px 0;
border-radius: 4px;
}
.active {
background-color: #444;
color: #fff;
}
.new {
background-color: greenyellow;
}
.green-btn:hover {
box-shadow: 2px 2px 5px green;
}
.btn:hover {
box-shadow: 2px 2px 5px;
}
footer {
padding: 8px;
display: flex;
justify-content: center;
border-top: 4px solid #aaa;
}
.source-code {
width: 32px;
height: 32px;
}