Skip to content

Commit

Permalink
Update css comments
Browse files Browse the repository at this point in the history
  • Loading branch information
haceneouserir committed Jan 29, 2024
1 parent 6685189 commit 31e7289
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions css/app.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Framework of website */
/* General */
.container {
margin-left: auto;
margin-right: auto;
Expand Down Expand Up @@ -34,7 +34,7 @@ body {
font-family: sans-serif;
}

/* Back to top btn */
/* Back to top button */
#back-to-top {
display: none;
position: fixed;
Expand All @@ -53,15 +53,15 @@ body {
background-color: #636E72;
}

/* Style header */
/* Header */
header {
background-color: #0984E3;
width: 100%;
height: auto;
border-bottom: 5px solid #000;
}

/* Style navbar */
/* Navbar */
.navbar {
width: 100%;
padding: 10px;
Expand All @@ -81,21 +81,21 @@ header {
cursor: pointer;
}

/* Hide the icon of small screens */
/* Hide burger icon */
.navbar .icon {
display: none;
cursor: pointer;
}

/* Style multi sections & footer */
/* Sections dimensions */
.portfolio, .services, .review, .contactMe, footer {
width: 100%;
height: auto;
padding: 20px;
margin-bottom: 20px;
}

/* Add flexbox properties */
/* Flexbox */
.skills, .allServices, .cards, footer {
display: flex;
flex-direction: row;
Expand All @@ -110,26 +110,26 @@ header {
padding: 2px;
}

/* Services divs */
/* Services */
.service1, .service2, .service3 {
width: 200px;
height: 350px;
border: 5px solid #0984E3;
margin: 20px;
}

/* Service description div */
/* Service description */
.servDescription {
text-align: center;
margin: 10px;
}

/* Service title div */
/* Service title */
.servTitle {
border-bottom: 5px solid #0984E3;
}

/* Recommended service div */
/* Recommended service */
.recommended {
margin-top: 50px;
padding-top: 20px;
Expand All @@ -138,7 +138,7 @@ header {
font-size: 1.5em;
}

/* Style the cards of clients reviews */
/* Clients reviews */
.card1, .card2, .card3 {
width: 200px;
height: auto;
Expand All @@ -147,15 +147,15 @@ header {
padding: 5px;
}

/* Photo of clients */
/* Clients images */
.cardPhoto {
display: block;
margin: auto;
width: 70px;
padding: 5px;
}

/* Contact info div */
/* Contact info */
.contactInfo {
border: 5px solid #0984E3;
padding: 50px;
Expand All @@ -173,7 +173,7 @@ header {
padding: 10px;
}

/* Style footer */
/* Footer */
footer {
width: 100%;
height: 75px;
Expand All @@ -182,17 +182,17 @@ footer {
margin-bottom: 0;
}

/* Copyright & social divs */
/* Copyright & social media */
.copyright, .social {
margin: 50px;
}

/* copyright text */
/* Copyright */
.copyright {
font-size: 1.2em;
}

/* Social buttons */
/* Social media links */
.social {
font-size: 1.7em;
cursor: pointer;
Expand All @@ -202,7 +202,7 @@ footer {
padding: 5px;
}

/* Responsive web design media queries */
/* Media queries */
@media screen and (max-width: 768px) {
.navbar a {
display: none;
Expand Down

0 comments on commit 31e7289

Please sign in to comment.