-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (45 loc) · 896 Bytes
/
style.css
File metadata and controls
46 lines (45 loc) · 896 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Lato&family=Raleway:wght@300&family=Roboto&family=Roboto+Mono:wght@300;500&display=swap');
body {
background-color: #111010;
color: rgb(221, 218, 218);
}
* {
font-family: "roboto";
}
p {
position: absolute;
margin-bottom: 0;
font-size: 1.8rem;
color: #dadada;
transform: translate(-50%, 0%);
top: 5%;
left: 50%;
}
textarea {
width: 60vw;
height: 50vh;
position: absolute;
background-color: var(--bg);
border:none;
resize: none;
font-size: 1rem;
color: rgb(221, 218, 218);
margin-top: 10px;
transform: translate(-50%, -50%);
top: 50%;
left: 50%;
}
#inp {
height: 50px;
top: 80%
}
::selection{
background: #d19f32;
color: #111010;
}
button {
position: absolute;
right: 0;
margin: 0;
transform: translate(-50%, -50%);
}