forked from Despmouk/pspi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
homepage.css
92 lines (77 loc) · 1.24 KB
/
homepage.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
86
87
88
89
90
91
92
/* BEGIN CODE HERE */
body {
margin: 0;
padding: 0;
width: 100%;
}
.container {
width: 100%;
max-width: 1200px;
padding: 0 20px;
box-sizing: border-box;
}
nav {
height: 150px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 7%;
width: 100%;
box-sizing: border-box;
}
.logo {
height: 58px;
width: 250px;
}
/*.nav-items {
making Home and Products further apart
}*/
.frame1 {
height: 400px;
width: 1200px;
padding: 1.5%;
margin: 20px;
}
.col1-2 {
width: 600px;
}
.frame2 {
height: 400px;
width: 1200px;
padding: 1.5%;
margin: 20px;
}
.image-2 {
width: 300px;
}
.image-3 {
width: 300px;
}
.row-top {
height: 200px;
width: 300px;
display: flex;
align-items: end;
text-align: right;
}
.row-bottom {
height: 200px;
width: 300px;
display: flex;
align-items: center;
text-align: top;
}
.frame3 {
height: 400px;
width: 1200px;
padding: 1.5%;
margin: 20px;
}
footer {
height: 100px;
}
.footer-text {
align-items: center;
text-align: center;
}
/* END CODE HERE */