-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
53 lines (46 loc) · 870 Bytes
/
main.css
File metadata and controls
53 lines (46 loc) · 870 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
body {
width: 80%;
max-width: 1024px;
margin: 0 auto;
background-color: lightsteelblue;
}
.container-padding50 {
padding-top: 50px;
}
.container-textinput {
width: 80%;
display: inline-block;
padding: 20px;
font-size: 16px;
font-family: Helvetica, sans-serif;
}
.container-button {
width: 10%;
display: inline-block;
padding: 20px;
background-color: green;
color: white;
font-size: 16px;
font-family: Helvetica, sans-serif;
border: 1px solid green;
border-radius: 5px;
}
.container-image {
width: 30%;
display: block;
float: left;
margin-right:3%;
}
h1 {
padding: 1rem;
border: 3rem;
text-align: justify;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
p{
text-align: justify;
padding: 1rem;
border: 3rem;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-weight: bolder;
}