You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
First-Website/contact/css.css

72 lines
1.1 KiB

.main {
5 years ago
width: 100%;
float: left;
5 years ago
}
.main h1 {
text-align: center;
5 years ago
font-size: 6rem;
margin-top: 5%;
5 years ago
}
.form {
margin: 6rem auto;
width: 50%;
background-color: #454752;
position: relative;
border-radius: 7px;
box-shadow: 0px 0px 15px -3px rgba(0,0,0,1);
padding: 1rem;
}
.form h3 {
display: block;
width: 90%;
margin: 0 auto;
margin-bottom: 1rem;
}
.submit {
position: absolute;
width: 6rem;
height: 40px;
right: 2rem;
bottom: 1rem;
}
.dataInput {
width: 90%;
display: block;
margin: 0 auto;
margin-bottom: 2rem;
}
.dataInput:focus {
outline: 0;
5 years ago
}
.info {
background-color: #33353d;
box-shadow: 0 -1px 6px 1px hsla(0, 0%, 0%, 0.8);
5 years ago
width: 100%;
padding-top: 2rem;
float: left;
5 years ago
}
.info h2 {
5 years ago
margin: 0;
margin-top: 4rem;
margin-left: 10%;
5 years ago
}
.info ul {
5 years ago
list-style-type: none;
display: inline-block;
margin: 3.5rem 0 3rem 10%;
5 years ago
padding: 0;
font-family: 'Open Sans'
}
.info h4 {
5 years ago
color: gray;
}
@media screen and (min-width:0px) and (max-width:1000px) {
.main h1 {
font-size: 4rem!important;
margin-top: 15%!important;
}
.form {
width: 90%!important;
}
}