-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
38 lines (33 loc) · 691 Bytes
/
Copy pathstyles.css
File metadata and controls
38 lines (33 loc) · 691 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
/* ...existing code... */
/* Ensure all base containers are full width */
html, body {
width: 100%;
max-width: 100%;
overflow-x: hidden;
margin: 0;
padding: 0;
}
.container, main, section {
width: 100%;
max-width: 100%;
box-sizing: border-box;
}
/* Make sure content is responsive */
img, video, iframe {
max-width: 100%;
height: auto;
}
.content-wrapper {
width: 100%;
padding-left: 5%;
padding-right: 5%;
box-sizing: border-box;
}
@media screen and (min-width: 1600px) {
/* Adjustments for extra wide screens */
.content-wrapper {
padding-left: 10%;
padding-right: 10%;
}
}
/* ...existing code... */