1
2/* ### ### ### */
3
4div.editBox {
5	/* Display */
6	/* Flex */
7	/* Position */
8	/* Settings */
9	/* Font */
10	/* Text */
11	/* Color */
12	/* Box */
13	/* Size */
14}
15
16div.picker {
17	/* Display */
18	display: flex;
19	flex-flow: row wrap;
20	justify-content: space-evenly;
21	/* Flex */
22	/* Position */
23	/* Settings */
24	/* Font */
25	font-size: .8rem;
26	/* Text */
27	/* Color */
28	color: var(--anti-color);
29	background-color: var(--main-color);
30	/* Box */
31	border: .1rem solid var(--lite-color);
32	/* Size */
33	width: 20rem;
34}
35
36#tool__bar {
37	/* Position */
38	float: left;
39	/* Box */
40	margin-bottom: .5rem;
41}
42
43button.toolbutton,
44button.pickerbutton {
45	/* Color */
46	color: var(--anti-color);
47	background-color: var(--main-color);
48	/* Box */
49	padding: .2rem;
50	border: .1rem solid var(--anti-color);
51}
52button.toolbutton:hover,
53button.pickerbutton:hover {
54	/* Color */
55	color: var(--anti-color);
56	background-color: var(--main-color);
57	/* Box */
58	outline: .1rem solid var(--dark-color);
59	outline-offset: 1px;
60}
61button.toolbutton:active,
62button.pickerbutton:active {
63	/* Color */
64	color: var(--anti-color);
65	background-color: var(--main-color);
66	/* Box */
67	outline: .2rem solid var(--dark-color);
68	outline-offset: 0;
69}
70
71button.toolbutton img {
72	/* Position */
73	vertical-align: middle;
74	/* Box */
75	padding: 0;
76	border: 0 ! important;
77}
78
79#wiki__editbar {
80	/* Display */
81	display: flex;
82	flex-flow: column;
83	gap: .5rem;
84	/* Position */
85	position: relative;
86	/* Settings */
87	overflow: hidden;
88	/* Box */
89	margin-bottom: 1.5rem;
90}
91
92#wiki__editbar #size__ctl {
93	/* Position */
94	position: absolute;
95	right: 0;
96}
97#wiki__editbar #size__ctl img {
98	/* Settings */
99	cursor: pointer;
100	/* Box */
101	border: 0;
102}
103
104#wiki__editbar .summary {
105	/* Display */
106	display: flex;
107	flex-flow: column;
108	align-items: start;
109	gap: .5rem;
110}
111
112div.license {
113	/* Font */
114	font-size: .8rem;
115}
116