-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (60 loc) · 1.16 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
/* General styles */
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 38vh;
font-family: Arial, sans-serif;
background-color: #0e1111;
}
.container {
width: 90%;
max-width: 600px;
margin: 0 auto;
padding: 20px;
background-color: #0e1111;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
border-radius: 10px;
}
textarea {
width: 100%;
height: 251px;
margin-bottom: 20px;
padding: 10px;
box-sizing: border-box;
border: 1px solid #0e1111;
border-radius: 5px;
font-size: 18px;
resize: none;
background-color: #0e1111;
color: #fff;
}
button {
padding: 10px 20px;
font-size: 16px;
border: none;
border-radius: 5px;
background-color: #0f3761;
color: #fff;
cursor: pointer;
width: 100%;
}
/* Media queries for smaller screens */
@media (max-width: 600px) {
.container {
width: 100%;
margin: 10px;
padding: 15px;
}
textarea {
height: 100px;
font-size: 14px;
}
button {
padding: 8px 16px;
font-size: 14px;
}
}