Initial commit with existing project files
This commit is contained in:
177
style.css
Executable file
177
style.css
Executable file
@@ -0,0 +1,177 @@
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
color: white;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
height: 75px;
|
||||
}
|
||||
|
||||
.logo {
|
||||
margin: 15px;
|
||||
margin-left: 100px;
|
||||
}
|
||||
|
||||
.navbar ul,
|
||||
.logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.navbar ul {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
list-style-type: none;
|
||||
margin-right: 100px;
|
||||
}
|
||||
|
||||
.navbar li a {
|
||||
color: rgba(0, 0, 0, .6);
|
||||
text-decoration: none;
|
||||
text-transform: uppercase;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
header,
|
||||
.section-form {
|
||||
background-color: rgb(56, 127, 128);
|
||||
}
|
||||
|
||||
.header-section {
|
||||
padding: 25px;
|
||||
}
|
||||
|
||||
.header-section h2 {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.btn-shop {
|
||||
margin-top: 5px;
|
||||
padding: 5px 15px;
|
||||
background-color: lightgray;
|
||||
border: 1px solid white;
|
||||
border-radius: 5px
|
||||
}
|
||||
|
||||
.btn-shop i {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
.header-content,
|
||||
.header-section-content {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 900px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
header h1 {
|
||||
text-align: center;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.header-section,
|
||||
footer {
|
||||
background-color: rgb(126, 128, 62);
|
||||
}
|
||||
|
||||
.img-round {
|
||||
width: 250px;
|
||||
border-radius: 50%;
|
||||
margin: 25px;
|
||||
}
|
||||
|
||||
main {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
margin: 25px auto;
|
||||
max-width: 1500px;
|
||||
}
|
||||
|
||||
main img {
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.section-infos {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
iframe {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.map,
|
||||
.section-form {
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
.section-form {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.section-form h2 {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.contact-form {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin: 30px;
|
||||
}
|
||||
|
||||
.contact-form label {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.contact-form input,
|
||||
.contact-form textarea {
|
||||
width: 500px;
|
||||
padding: 10px;
|
||||
margin-bottom: 10px;
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
textarea {
|
||||
height: 100px;
|
||||
}
|
||||
|
||||
.contact-infos {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.contact-infos div {
|
||||
display: flex;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.contact-infos div i {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.btn-submit {
|
||||
width: 50px;
|
||||
padding: 5px;
|
||||
background-color: rgb(126, 128, 62);
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 5px;
|
||||
cursor: pointer;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
footer {
|
||||
padding: 15px 0;
|
||||
}
|
||||
Reference in New Issue
Block a user