-
Notifications
You must be signed in to change notification settings - Fork 0
/
productlandingpage.css
126 lines (106 loc) · 1.72 KB
/
productlandingpage.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/** global element styling **/
@import 'https://fonts.googleapis.com/css?family=Lato:400,700';
@media (max-width: 600px) {
#header-img {
max-width: 30%;
min-width: 200px;
}
}
#header-img {
max-width: 50%;
min-width: 200px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #eee;
font-family: 'Lato', sans-serif;
}
li {
list-style: none;
}
a {
color: #000;
text-decoration: none;
}
header {
position: fixed;
top: 0;
min-height: 75px;
padding: 0px 20px;
display: flex;
justify-content: space-around;
align-items: center;
background-color: #eee;
}
@media (max-width: 600px) {
header {
flex-wrap: wrap;
}
}
nav {
font-weight: 400;
}
@media (max-width: 650px) {
nav {
margin-top: 10px;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 0 50px;
}
nav li {
padding-bottom: 5px;
}
}
nav>ul {
width: 35vw;
display: flex;
flex-direction: row;
justify-content: space-around;
}
main {
margin-top: 4%;
}
p {
color: black;
}
@media (max-width: 650px) {
nav>ul {
flex-direction: column;
}
}
@media (max-width: 600px) {
main {
margin-top: 7%;
}
}
@media (max-width: 299px) {
main {
margin-top: 30%;
}
}
footer {
margin-top: 30px;
background-color: #ddd;
padding: 20px;
}
footer>ul {
display: flex;
justify-content: flex-end;
}
footer>ul>li {
padding: 0 10px;
}
footer>span {
margin-top: 5px;
display: flex;
justify-content: flex-end;
font-size: 0.9em;
color: #444;
}