Skip to content

Commit

Permalink
styles updated
Browse files Browse the repository at this point in the history
  • Loading branch information
shliamin committed Jul 23, 2024
1 parent 89cdfec commit 75bb003
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 2 deletions.
1 change: 0 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ <h3>Lorem Ipsum</h3>
<option value="">Select Tech Stack</option>
</select>
</div>
<h3>GitHub Projects</h3>
<div class="projects-grid" id="projects-grid">
<div class="project" data-tech-field="full-stack" data-tech-stack="react">
<h4>Project One</h4>
Expand Down
40 changes: 39 additions & 1 deletion styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ body {
}

.container {
position: relative;
display: flex;
flex-direction: column;
max-width: 1200px;
Expand Down Expand Up @@ -294,7 +295,7 @@ body {
.filters {
display: flex;
gap: 10px;
margin-bottom: 20px;
margin-bottom: 40px;
}

.sidebar-image {
Expand Down Expand Up @@ -362,9 +363,34 @@ body {
}


.uk-modal-dialog {
border-radius: 10px;
top: 100px;
}

.uk-modal-close {
background-color: #003366;
color: white;
padding: 10px 20px;
border-radius: 10px;
font-size: 16px;
border: none;
cursor: pointer;
display: block;
margin: 20px auto 0;
}

.uk-modal-close:hover {
background-color: #002244;
}




@media (min-width: 1181px) {



.desktop-only {
display: block;
}
Expand Down Expand Up @@ -404,6 +430,18 @@ body {
margin-top: 127px;
display: flex;
}

.filters {
padding-left: 10%;
padding-right: 10%;
box-sizing: border-box;
}

.section h4 {
padding-left: 10%;
padding-right: 10%;
box-sizing: border-box;
}
}

@media (max-width: 1180px) {
Expand Down

0 comments on commit 75bb003

Please sign in to comment.