-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
61 lines (53 loc) · 1 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
#text {
position: absolute;
left: 40%;
transform: translate(-50%, 0%);
top: 20%;
width: 30%;
height: 60%;
resize: none;
}
#title {
position: absolute;
left: 40%;
transform: translate(-50%, 0%);
top: 13%;
height: 3%;
width: 20%;
resize: none;
}
#text-control-buttons {
position: absolute;
right: 33%;
top: 20%;
display: flex;
flex-direction: column;
row-gap: 3px;
}
#user-texts {
position: absolute;
display: flex;
flex-direction: column;
top: 40px;
width: 15%;
right: 10%;
}
.user-text-title {
text-align: center;
font-size: larger;
font-weight: bold;
padding-bottom: 10px;
}
.user-text {
border-color: rgb(190, 190, 190);
border-style: solid;
border-width: 1px 1px 0 1px;
padding: 10px;
}
.user-text:last-child {
border-bottom: 1px solid rgb(190, 190, 190);
}
#account-buttons > button > a:visited, #account-buttons > button > a {
color: black;
text-decoration: none;
}