-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
69 lines (60 loc) · 1.05 KB
/
style.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
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
height: 100%;
font-size: 10px;
}
@media screen and (min-width: 768px) {
html {
font-size: 15px;
}
}
@media screen and (min-width: 992px) {
html {
font-size: 20px;
}
}
@media screen and (min-width: 1200px) {
html {
font-size: 25px;
}
}
body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
height: 100%;
margin: 0;
}
textarea::first-line {
font-weight: 600;
}
textarea {
all: unset;
box-sizing: border-box;
display: block;
height: 100%;
width: 100%;
font-size: 2rem;
line-height: 4rem;
padding: 0px 0px 0 5rem;
word-break: break-word;
white-space: pre-wrap;
background-color: snow;
background-image: linear-gradient(
90deg,
transparent calc(4rem - 2px),
salmon calc(4rem - 2px),
salmon 4rem,
transparent 4rem
),
linear-gradient(
transparent calc(4rem - 1px),
lightblue calc(4rem - 1px),
blue 4rem,
transparent
);
background-size: 100% 4rem;
background-attachment: local;
}