-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
93 lines (79 loc) · 1.22 KB
/
Copy pathmain.css
File metadata and controls
93 lines (79 loc) · 1.22 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
:root {
--std-size: large;
}
html {
height: 100%;
}
body {
background: rgb(237, 237, 192);
padding: 0;
margin: 0;
font-family: monospace;
font-size: 20px;
height: 100%;
}
a {
color: rgb(126, 139, 160);
font-size: var(--std-size);
}
a:visited {
color: rgb(182, 194, 242);
font-size: var(--std-size);
}
a:hover {
color: rgb(144, 42, 42);
font-size: var(--std-size);
}
button {
background: rgb(182, 194, 242);
width: 120px;
height: 40px;
float: left;
margin-right: 10px;
font-size: 18px;
border-radius: 10px;
border: none;
}
.top,
.bottom {
width: 840px;
max-width: 100%;
margin: auto;
display: block;
}
.top {
height: 100px;
padding-top: 20px;
display: fixed;
}
details>summary {
list-style: none;
}
details summary::-webkit-details-marker {
display: none;
}
input,
input:focus,
.bottom,
.bottom:active,
.bottom:focus {
min-height: calc(100% - 200px);
display: block;
border: 1px solid rgb(126, 139, 160);
}
.help {
color: rgb(126, 139, 160);
font-size: var(--std-size);
display: block;
}
.showmult {
display: none;
}
.version {
color: rgb(126, 139, 160);
font-size: var(--std-size);
width: 840px;
max-width: 100%;
margin: auto;
display: block;
}