-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
73 lines (62 loc) · 950 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
body{
background-color:#e0e0e0;
color:black;
text-align:center;
}
h1{
font-family:Sans-serif;
font-size:60px;
}
#description{
font-size:20px;
}
main{
width:50%;
margin:auto;
background-color:#ffffff;
font-size:18px;
padding:2.5%;
text-align:left;
font-family:Sans-serif;
}
#input-text-container{
width:100%;
}
#input-text-container input,label{
display:block;
}
#input-text-container label{
margin-top:20px;
}
#input-text-container input{
width:100%;
height:35px;
margin-top:1.5%;
border-radius:7px;
border-width:0px;
background-color:#e0e0e0;
}
#news-type-label{
margin-top:10px;
}
#dropdown{
width:100%;
height:35px;
margin-top:1.5%;
border-radius:7px;
border-width:0px;
background-color:#e0e0e0;
}
#textarea{
resize:none;
width:100%;
height:100px;
}
#submit{
margin-top:25px;
width:100%;
height:40px;
border-width:0px;
background-color:#c7c7c7;
font-size:17px;
}