Skip to content
This repository was archived by the owner on Jan 14, 2024. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Setup

First step is to fork this repo into your own Github account - if you don't remember how, then refer back Lesson 0 contents.
*First step is to fork this repo into your own Github account - if you don't remember how, then refer back Lesson 0 contents.

## Homework

Expand Down
189 changes: 189 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,192 @@
* for example: General styles, Navigation styles, Hero styles, Footer etc.
*
*/
/*******************************************/
/*---- COLOR SCHEMES for TEXTS AND LINKS---Konika*/
/*******************************************/

* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
background-color: #e8e1e0;
}
h1,
h2,
h3 {
color: #57394a;
}

a {
color: #441831;
text-decoration: none;
}
img {
width: 100%;
}
/*header section style*/
#page-title {
margin: 0 auto;
text-align: center;
padding: 20px;
/**background-image: url(/image/logo.jpeg);
height:300px ;
width: 600px;**/
}
#page-title h1 {
font-size: 3rem;
}
#page-title .page_description {
font-size: 1.3rem;
color: #79400e;
padding-top: 20px;
padding-bottom: 10px;
}

#home {
margin: 0 auto;
display: flex;
flex-flow: row wrap;
justify-content: space-around;
align-items: stretch;
width: 100%;
background-color: #e0c2c0;
padding: 10px;
}

#logo {
height: 100px;
width: 100px;
border-radius: 50%;
opacity: 0.8;
border: 2px dotted rgb(224, 156, 28);
padding: 0.3rem;
align-self: left;
}
#navbar {
display: flex;
align-items: center;
justify-content: center;
}
#navbar .nav-link {
display: block;
padding: 0.6em;
color: #8f4e15;
box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.75);
margin-right: 30px;
border-radius: 15px;
text-transform: uppercase;
font-size: 1.2rem;
font-weight: 700;
}
#navbar .nav-link:hover {
background-color: #dbb0a0;
color: #57394a;
}

/*main section starts here*/
.container {
max-width: 1100px;
margin: 0 auto;
overflow: hidden;
}

/*gallery section styling*/

#gallery {
display: flex;
flex-flow: row wrap;
justify-content: space-around;
padding: 10px;
margin: 10px;
border: 1px dotted rgb(224, 156, 28);
border-radius: 10px;
}

.gallery_image {
vertical-align: middle;
width: 33%;
padding: 10px;
height: 300px;
background-color: #f3e2dc;
margin-bottom: 3px;
border-radius: 5px;
}
/*article section starts here*/
#articles {
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
max-width: 1100px;
}
.blog:first-child {
font-style: oblique;
color: #79400e;
}
.blog {
text-align: justify;
margin-bottom: 10px;
}
.blog h3 {
font-size: 35px;
}
.blog p {
font-size: 1.2rem;
padding-top: 10px;
color: #4b3e34;
}
button {
padding: 10px;
color: #634025;
box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.75);
margin-right: 30px;
border-radius: 8px;
font-size: 1rem;
}
.read_more {
text-align: left;
padding-top: 10px;
margin: 0 auto;
}
hr {
color: #57394a;
height: 2px;
border-width: 0;
background-color: gray;
}
/*********footer goes here*******/
footer {
margin: 0 auto;
padding: 20px;
overflow: hidden;
background-image: linear-gradient(45deg, #f0d4cb, #f6e6e5, #dbb0a0);
}
#about_us {
max-width: 1100px;
margin: 0 auto;
}
footer .about_me {
font-size: 40px;
font-weight: 700;
padding-bottom: 20px;
}
footer .information {
font-size: 1.2rem;
color: #4b3e34;
padding: 0px 0 20px;
}

.thank-you {
padding: 8px;
font-size: 1.1rem;
text-align: center;
color: #79400e;
}
.trademark {
text-align: center;
padding: 10px;
color: #79400e;
}
Binary file added image/.DS_Store
Binary file not shown.
Binary file added image/Orange-Persimmons-Growing-on-the-Tree.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added image/big tree.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added image/fruit_bowl.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added image/garden-1.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added image/logo.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added image/nature-wallpaper-1.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added image/pomegranate-tree.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading