-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
38 lines (34 loc) · 821 Bytes
/
style.css
File metadata and controls
38 lines (34 loc) · 821 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
body {
font-family: "Arial";
font-size: 18px;
background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS0cAXdV9_VYtb8qbU-nULFD1Wg3WmVZ3uEqA&usqp=CAU);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
textarea {
font-family: "Arial";
display: block;
background-color: #fdf5eb;
border: 1px solid #000;
width: 100%;
height: 150px;
padding: 12px 12px;
box-sizing: border-box;
border-radius: 4px;
}
h1 {
color: #C62828;
background-color: #fdf5eb;
font-family: "Arial";
}
button {
background-color: #1B5E20;
color: #FFFFFF;
border: none;
border-radius: 5px;
padding: 10px 20px;
cursor: pointer;
box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}