websitedesign2022/docs/assets/css/main.css

177 lines
2.8 KiB
CSS
Raw Normal View History

2022-01-11 12:51:32 -06:00
body {
2022-05-03 15:38:56 -05:00
margin: 0px;
background-color: #a52a2a;
overflow: overlay;
2022-02-01 12:02:04 -06:00
}
2022-02-10 19:46:33 -06:00
.content {
padding: 10px;
2022-05-03 15:38:56 -05:00
background-color: #a52a2a;
2022-01-11 12:51:32 -06:00
}
header {
display: block;
2022-02-10 19:46:33 -06:00
padding: 10px;
margin: 10px;
width: 95.75%;
overflow-x: auto;
overflow-y: hidden;
white-space: nowrap;
2022-01-11 12:51:32 -06:00
}
header img {
2022-02-10 19:46:33 -06:00
padding: 15px;
border-radius: 25px;
display: inline-block;
2022-01-11 12:51:32 -06:00
margin-left: auto;
margin-right: auto;
2022-02-10 19:46:33 -06:00
width: 300px;
2022-01-11 12:51:32 -06:00
height: auto;
}
2022-02-10 20:11:37 -06:00
header a, .fp-header a, .order-button {
2022-01-11 12:51:32 -06:00
list-style-type: none;
2022-02-10 19:46:33 -06:00
margin: 0px;
2022-01-11 12:51:32 -06:00
padding: 10px;
display: inline-block;
2022-02-10 19:46:33 -06:00
transition: background-color 1s;
2022-01-11 12:51:32 -06:00
color: #ffffff;
background-color: #a52a2a;
text-align: center;
2022-05-03 15:38:56 -05:00
padding: 16px 16px;
2022-01-11 12:51:32 -06:00
text-decoration: none;
font-family: "M PLUS 1", sans-serif;
2022-02-10 19:46:33 -06:00
border-radius: 25px;
2022-02-10 20:11:37 -06:00
border: none;
2022-01-11 12:51:32 -06:00
}
2022-02-10 20:11:37 -06:00
header a:hover, .fp-header a:hover, .order-button:hover {
2022-01-11 12:51:32 -06:00
background-color: #d2691e;
}
.current {
background-color: #ff8f61;
}
.current:hover {
background-color: #ff7f61;
}
2022-02-10 19:46:33 -06:00
.fp-header {
2022-02-14 17:52:29 -06:00
height: 30rem;
2022-05-03 15:38:56 -05:00
background-position: center;
2022-02-14 17:56:02 -06:00
background-image: url("../img/lyza.png");
2022-05-03 15:38:56 -05:00
background-repeat: no-repeat;
2022-02-10 19:46:33 -06:00
padding: 30px;
2022-05-03 15:38:56 -05:00
text-align: center;
2022-02-10 19:46:33 -06:00
font-family: "M_PLUS_1", sans-serif;
2022-05-03 15:38:56 -05:00
border-radius: 25px;
2022-02-10 19:46:33 -06:00
}
2022-01-11 12:51:32 -06:00
main {
margin: 10px;
padding: 10px;
2022-02-10 19:46:33 -06:00
border-radius: 25px;
2022-01-11 12:51:32 -06:00
background-color: #d2691e;
font-family: "Open Sans", sans-serif;
color: #ffffff;
}
main p {
font-family: "Roboto", sans-serif;
2022-02-10 19:46:33 -06:00
}
main a {
text-decoration: none;
color: #dddddd;
transition: color 500ms;
}
main a:hover {
color: #ffffff;
}
::-webkit-scrollbar {
border-radius: 25px;
2022-05-03 15:38:56 -05:00
width: 14px;
overflow: overlay;
scrollbar-gutter: initial;
}
*:hover::-webkit-scrollbar {
width: 8px;
2022-02-10 19:46:33 -06:00
}
::-webkit-scrollbar-track {
visibility: hidden;
margin: 20px;
}
::-webkit-scrollbar-thumb {
border-radius: 25px;
2022-05-03 15:38:56 -05:00
border: 6px solid #544c4a;
2022-02-10 19:46:33 -06:00
background-color: #544c4a;
2022-05-03 15:38:56 -05:00
background-clip: padding-box;
2022-02-10 19:46:33 -06:00
}
::-webkit-scrollbar-thumb:hover {
background-color: #363636;
2022-05-03 15:38:56 -05:00
border: 0;
2022-02-10 19:46:33 -06:00
}
.flex-w {
display: flex;
flex-direction: row;
}
.flex-w div {
flex: 50%;
padding: 10px;
margin: 10px;
background-color: #a52a2a;
border-radius: 25px;
}
.flex-w-nc {
display: flex;
flex-direction: row;
}
.flex-w-nc div {
padding: 10px;
margin: 10px;
}
.cover {
width: 95%;
height: auto;
}
2022-05-03 15:38:56 -05:00
@media (max-width: 1440px) {
.fp-header {
background-position: right;
}
}
@media (max-width: 1000px) {
2022-02-10 19:46:33 -06:00
body {
margin: 0px;
}
.content {
width: 100%;
border-radius: 0px;
}
.flex-w {
flex-direction: column;
}
.flex-w div {
flex: 100%
}
header {
2022-05-03 15:38:56 -05:00
font-size: 30px;
2022-02-10 19:46:33 -06:00
}
2022-01-11 12:51:32 -06:00
}