-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (57 loc) · 1.02 KB
/
style.css
File metadata and controls
64 lines (57 loc) · 1.02 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
align-items: center;
justify-content: center;
font-family: Arial, Helvetica, sans-serif;
gap: 1rem;
background: #242530;
width: 100vw;
height: 100vh;
}
i {
font-size: 10rem;
}
.container {
display: flex;
flex-direction: column;
gap: 1rem;
}
textarea {
padding: 1rem;
font-family: Verdana, Geneva, Tahoma, sans-serif;
background-color: transparent;
color: white;
border: 1px solid;
border-radius: 10px;
font-size: 1.1rem;
height: 15rem;
width: 25rem;
outline: none;
&::placeholder {
color: #ddd;
font-size: 1rem;
}
}
#read {
position: relative;
padding: 0.5rem 1rem;
font-size: 1.5rem;
background-color: transparent;
border: 1px solid;
color: white;
border-radius: 10px;
}
#read::after {
content: "ALT + SHIFT + R";
position: absolute;
top: 5px;
left: 10px;
white-space: nowrap;
color: #778;
font-size: 10px;
}