Skip to content

Commit

Permalink
sass
Browse files Browse the repository at this point in the history
  • Loading branch information
jcupac committed Jan 23, 2024
1 parent 0648318 commit 5295049
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 8 deletions.
3 changes: 2 additions & 1 deletion _scss/_conference.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,15 @@
text-transform: uppercase;
font-size: 18px;
margin-top: 2rem;
margin-bottom: 2.5rem;
margin-bottom: 2.25rem;
p {
background-color: #25b4bd;
color: white;
display: inline-block;
padding: .35rem 1rem;
border-radius: 6px;
margin-right: .25rem;
margin-bottom: .25rem;
// box-shadow: 2px 2px 20px rgba(24, 24, 24, 0.6
box-shadow: 1px 1px 6px rgba(24, 24, 24, 0.4);
}
Expand Down
29 changes: 22 additions & 7 deletions _scss/_masthead.scss
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
.s-masthead {
@media (max-width: 566px){
min-height: 100vh;
// min-height: 100vh;
// min-height: 420px;
}
@media (min-width: 567px) {
min-height: 420px;
// min-height: 420px;
// max-height: 420px;
}
@media (min-width: 768px) {
min-height: 320px;
// min-height: 320px;
// max-height: 320px;
}
@media (min-width: 1200px) {
min-height: 420px;
// min-height: 420px;
// max-height: 420px;
}
margin-bottom: 2rem;
Expand All @@ -23,8 +24,11 @@
.container {
padding-right: 3rem;
padding-left: 3rem;
padding-top: 3rem;
padding-bottom: 3rem;
padding-top: 3.5rem;
padding-bottom: 3.5rem;
display: flex;
justify-content: center;
align-items: center;
@media (min-width: 567px) and (max-width: 767px) {
padding-right: 5rem;
padding-left: 5rem;
Expand All @@ -38,7 +42,18 @@
padding-left: 0;
}
img {
width: 100%;
max-width: 320px;
@media (min-width: 768px){
width: 100%;
max-width: 100%;
}
@media (min-width: 992px){
max-width: 656px;
}
@media (min-width: 1200px){
// max-width: 656px;
max-width: 100%;
}
}
// background-color: pink;
}
Expand Down

0 comments on commit 5295049

Please sign in to comment.