Skip to content

Commit 3ca0700

Browse files
The "Projects" section is not visible until the user scrolls the page (#74)
## How does this PR impact the user? before: <img width="958" height="646" alt="image" src="https://github.com/user-attachments/assets/60e6d748-3522-41e3-a5f3-007fc7534de1" /> after: <img width="1572" height="900" alt="image" src="https://github.com/user-attachments/assets/fc3dc8eb-a825-4d3c-885b-a56eed83428b" /> ## Description The "Projects" section is not visible until the user scrolls the page ## Checklist - [ ] my PR is focused and contains one wholistic change - [ ] I have added screenshots or screen recordings to show the changes
1 parent d09731b commit 3ca0700

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

main.css

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,17 @@
1212
font-family:verdana;
1313
font-size:11px;
1414
}
15-
1615
.open {
1716
display: flex !important;
1817
}
19-
2018
.open_header {
2119
padding-bottom: 100vh !important;
2220
}
23-
2421
* {
2522
margin: 0;
2623
padding: 0;
2724
box-sizing: border-box;
2825
}
29-
3026
@font-face {
3127

3228
font-family: suisseIntl-r;
@@ -129,6 +125,7 @@ h3 {
129125

130126
.header {
131127
padding-bottom: 235px;
128+
132129
}
133130

134131
.hidden{
@@ -496,7 +493,13 @@ footer {
496493
}
497494

498495
/*Адаптив*/
499-
496+
497+
@media (min-height: 501px) and (max-height: 1000px) and (orientation: landscape) {
498+
.header{
499+
height: 100vh;
500+
display: flex;
501+
}
502+
}
500503
@media screen and (max-width: 1200px) {
501504
.container {
502505
width: 900px;
@@ -655,7 +658,6 @@ footer {
655658
width: 100%;
656659
padding: 0 30px;
657660
}
658-
659661
.header_menu {
660662
padding-left: 30px;
661663
padding-right: 30px;

0 commit comments

Comments
 (0)