-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
58 lines (49 loc) · 963 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
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200&display=swap');
body {
font-family: 'Dosis', sans-serif;
background: url(https://i1.faceprep.in/ProGrad/minion-background.png);
background-size: 100px 100px ;
}
section{
width: 500px;
background-color: white;
margin: auto;
padding: 10px 0;
}
div{
text-align: center;
}
label{
font-weight: bold;
}
input,
textarea{
margin: 10px 0;
}
p,
input[type="text"],
input[type="number"],
textarea,
form {
width: 350px;
padding: 8px;
}
p,
form {
margin: auto;
}
input[type="subject"]{
display: block;
background-color: blue;
color: white;
margin: auto;
width: 150px;
padding: 10px;
border: none;
border-radius: 5px;
font-weight: bold;
}
input[type="checkbox"]{
margin-left: 5px 0;
margin-right: 5px 0;
}