-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
54 lines (46 loc) · 883 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
body {
background-image: url("images/background_image.jpg");
font-family: 'Roboto', sans-serif;
color: whitesmoke;
}
main {
margin: auto;
text-align: center;
background-color: hsla(0, 0%, 0%, 0.5);
padding: 2em;
border-radius: 10px;
}
.textbox {
margin: auto;
width: 450px;
height: 50px;
}
#mainbox {
background-color: hsla(0, 0%, 0%, 0.8);
padding: 50px;
margin: 5em auto;
width: 500px;
text-align: left;
}
#content-type {
width: 450px;
height: 40px;
}
.submit {
padding: 10px;
padding-right: 20px;
padding-left: 20px;
border-radius: 50px;
background-color: red;
text-align: center;
border: 0px;
color: whitesmoke;
}
#comment{
width: 450px;
}
#center{
text-align: center;
font-size: 40px;
}