-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
72 lines (61 loc) · 1.07 KB
/
Copy pathstyles.css
File metadata and controls
72 lines (61 loc) · 1.07 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
body {
font-family: Arial, sans-serif;
margin: 20px;
text-align: center;
}
h1 {
text-align: center;
}
textarea {
width: 100%;
height: 100px;
margin-bottom: 10px;
}
button {
margin-bottom: 10px;
}
form {
background-color: #4654e1;
width: 300px;
height: 44px;
border-radius: 5px;
display: flex;
flex-direction: row;
align-items: center;
}
input {
all: unset;
font: 16px system-ui;
color: #fff;
height: 100%;
width: 100%;
padding: 6px 10px;
align-items: center;
}
.container {
background-color: #F5F5DC;
padding: 10px;
}
.poem {
background-color: #f0f0f0;
border: 1px solid #ccc;
padding: 10px;
margin-bottom: 5px;
}
.form-outline {
margin-bottom: 5px;
}
.poem-popup {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, 0%);
width: 80%;
max-width: 600px;
padding: 20px;
background-color: white;
border: 1px solid #ccc;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
z-index: 1000;
overflow-y: auto;
}