tayronafoods-web/src/style.css

94 lines
1.0 KiB
CSS
Raw Normal View History

2023-06-11 14:34:05 +02:00
html {
box-sizing: border-box;
font-size: 16px;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
margin: 0;
padding: 0;
font-weight: normal;
2023-06-10 16:59:02 +02:00
}
2023-06-11 14:34:05 +02:00
ol,
ul {
list-style: none;
2023-06-10 16:59:02 +02:00
}
2023-06-11 14:34:05 +02:00
img {
max-width: 100%;
height: auto;
2023-06-10 16:59:02 +02:00
}
body {
margin: 0;
2023-06-11 14:34:05 +02:00
padding: 0;
font-family: 'Roboto', sans-serif;
2023-06-14 20:26:42 +02:00
background-color: #121212
2023-06-10 16:59:02 +02:00
}
2023-09-08 02:43:17 +02:00
button {
background-color: #ffcd00;
border: 0;
color: #fff;
padding: 8px 8px;
border-radius: 4px;
cursor: pointer;
font-weight: 600;
}
button.secondary {
background-color: #fff;
color: #ffcd00;
}
2023-06-11 14:34:05 +02:00
.main-container {
2023-09-03 14:40:49 +02:00
width: 960px;
2023-06-14 20:26:42 +02:00
margin: 0 auto;;
2023-06-15 20:06:33 +02:00
}
.text-centered {
text-align: center !important;
}
.mt-1 {
margin-top: 8px !important;
}
.mt-2 {
margin-top: 16px !important;
}
.mt-3 {
margin-top: 24px !important;
}
.mt-4 {
margin-top: 32px !important;
}
.mt-5 {
margin-top: 40px !important;
}
.mt-6 {
margin-top: 48px;
2023-09-03 14:40:49 +02:00
}
2023-09-04 12:56:05 +02:00
a, .link {
color: #442808;
}
2023-09-03 14:40:49 +02:00
@media only screen and (max-width: 960px) {
.main-container {
width: 100%;
}
2023-06-11 14:34:05 +02:00
}