forked from taadams1/unicode_sorter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (99 loc) · 2.03 KB
/
style.css
File metadata and controls
113 lines (99 loc) · 2.03 KB
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
* {
display: flex;
font-family: monospace;
box-sizing: border-box;
}
html {
height: 100%;
}
head {
display: none;
}
body {
max-height: 100%;
width: 100%;
padding: 16px;
background-image: url("hlfbg2.png");
background-clip: padding-box;
}
.container {
max-width: 60%;
flex-direction: column;
justify-content: flex-start;
max-height: 100%;
margin-left: auto;
}
.title {
background: white;
flex-direction: row;
padding: 8px;
margin-top: 0;
margin-bottom: 8px;
border: 2px solid black;
box-shadow: 2px 2px rgba(0, 0, 0, 0.4);
}
.title h1 {
margin: 0;
}
.title button {
background: #f5fff5;
padding: 8px;
margin: auto 0 auto auto;
height: inherit;
max-width: 22%;
}
#sorter-container {
justify-content: flex-end;
}
.canvas-container {
max-width: 100%;
margin-right: auto;
}
canvas {
align-self: flex-start;
background: white;
margin-right: 12px;
border: 2px solid black;
box-shadow: 3px 3px rgba(0, 0, 0, 0.5);
}
#btn-container {
justify-content: space-between;
min-width: 18%;
max-width: 36%;
flex-direction: column;
}
button {
justify-content: center;
width: 100%;
text-align: center;
font-size: 16px;
line-height: 0.9;
background: white;
color: darkslategray;
padding: 6px;
margin-bottom: 8px;
cursor: pointer;
border: 2px solid black;
box-shadow: 2px 2px rgba(0, 0, 0, 0.4);
}
button:active {
background: darkslategray;
color: ghostwhite;
}
select {
cursor: pointer;
border: 2px solid black;
box-shadow: 2px 2px rgba(0, 0, 0, 0.4);
}
P {
font-size: 16px;
font-weight: bold;
margin: 5px 0px;
text-shadow: 2px 2px 5px rgba(255, 255, 255, 1),
-3px -5px 6px rgba(255, 255, 255, 1),
1px 1px 1px rgba(255, 255, 255, 1),
-1px -1px 1px rgba(255, 255, 255, 1);
}
#catBtn {
margin-top: 6px;
}