-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (90 loc) · 1.52 KB
/
style.css
File metadata and controls
102 lines (90 loc) · 1.52 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
:root {
--accent: #69dead;
--accent-transparent: #69dead33;
}
*,
*:before,
*:after {
box-sizing: inherit;
margin: 0;
padding: 0;
}
html {
box-sizing: border-box;
}
body {
font-family: "Courier New", Courier, monospace;
font-size: 1.2rem;
display: flex;
flex-flow: column nowrap;
justify-content: space-between;
align-items: center;
height: 100vh;
width: 100%;
}
textarea {
border-radius: 1rem;
padding: 1rem;
font: inherit;
border: 2px dashed var(--accent);
background-color: var(--accent-transparent);
width: 40vw;
height: 40vh;
}
header,
footer {
width: 100%;
text-align: center;
}
main {
display: flex;
flex-flow: column wrap;
justify-content: center;
width: 100%;
}
button {
border: none;
border-radius: 12px;
padding: 12px;
margin: 12px auto;
background-color: var(--accent);
font: inherit;
}
button:hover {
box-shadow: 0px 0px 10px 2px var(--accent);
}
label {
cursor: pointer;
}
input:checked + label {
background-color: var(--accent-transparent);
font-weight: 900;
}
fieldset {
padding: 1rem;
}
legend {
font-variant: small-caps;
font-size: 20px;
margin: 1rem;
}
input {
height: 15px;
width: 25px;
accent-color: var(--accent);
}
.boxes {
display: flex;
flex-flow: row nowrap;
align-items: center;
justify-content: space-between;
margin: auto;
width: 90%;
}
.options {
width: 80%;
margin: auto;
}
.arrow {
font-size: 40px;
}