-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
85 lines (73 loc) · 1.18 KB
/
stylesheet.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
74
75
76
77
78
79
80
81
82
83
84
85
body {
display: flex;
flex-direction: column;
justify-content: space-between;
min-height: 100vh;
font-size: 15pt;
text-align: center;
margin: 0px;
background-color: white;
}
.header {
display: flex;
justify-content: space-between;
background: darkblue;
color: white;
margin: 0px;
margin-bottom: 5%;
padding: 1em;
}
.header img {
margin: auto 0;
width: 1em;
}
.content {
/*padding: 0 5% 0 5%;*/
}
.property {
background: #eeeeee;
/*border-radius: 20px;*/
padding-left: 20px;
padding-right: 20px;
margin: 10px;
}
.property img {
width: 100%;
border: 4px solid darkgrey;
border-radius: 15px;
}
footer {
font-size: 15px;
background-color: #333344;
text-align: center;
color: white;
padding: 2%;
}
.footer {
display: flex;
justify-content: space-around;
}
.footer_links a {
color: white;
}
.footer_links {
display: flex;
flex-direction: column;
}
.footer div {
display: flex;
align-items: space-around;
flex-direction: column;
width: 50%;
}
.footer img {
width: 50%;
align-self: center;
}
.back_to_top {
width: 100%;
padding: 1%;
border: 1px solid sandybrown;
border-radius: 10px;
background-color: gold;
}