-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (54 loc) · 797 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
nav {
align-items: center;
text-align: center;
display: flex;
justify-content: space-between;
}
header {
background-color:#333339;
padding: 10px 0;
text-align: center;
}
nav a{
color:hwb(0 52% 47%);
text-decoration: none;
padding: 10px 20px;
}
#topImage {
display:flex;
flex-direction:row;
align-items:center;
padding: 10px;
}
#middleImage {
margin-left: 30px;
padding:5px;
}
#bottomImage {
margin-right:30px;
margin-bottom: 30px;
float:left;
padding:10px;
}
section h3 {
font-weight: bold ;
}
section p{
margin: 20px;;
width:400px;
display:flex;
flex-direction: column;
}
#call {
background-color: black;
color: azure;
}
footer {
position:fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: #333339;
color: white;
padding: 30px;
}