-
Notifications
You must be signed in to change notification settings - Fork 0
/
Request.css
57 lines (51 loc) · 934 Bytes
/
Request.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
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body {
height: 100%;
width: 100%;
background-image: url("Images/Hell.jpg");
background-size: cover;
}
.box {
height: auto;
width: 70%;
background-color: rgba(0, 0, 0, 0.700);
color: red;
margin: auto;
margin-top: 2rem;
padding: 1rem;
text-align: center;
}
h1 {
height: auto;
width: auto;
font-size: 3rem;
text-align: center;
}
p {
height: auto;
width: auto;
font-size: 1.3rem;
font-weight: bold;
text-align: center;
}
textarea {
height: 10rem;
width: 100%;
padding: 1rem;
font-size: 1rem;
font-family: 'Times New Roman';
}
button {
height: auto;
width: auto;
font-size: 1rem;
font-weight: bold;
padding: 0.5rem;
cursor: pointer;
background-color: red;
color: black;
}