26 lines
333 B
SCSS
26 lines
333 B
SCSS
|
|
|
|
main > .texts {
|
|
box-sizing: border-box;
|
|
|
|
a {
|
|
color: #e00;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.text {
|
|
margin: 8px;
|
|
h1 {
|
|
font-weight: bold;
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
@media screen and (max-width: 799px) {
|
|
.text {
|
|
margin-bottom: 16px;
|
|
h2 {
|
|
margin-bottom: 8px;
|
|
}
|
|
}
|
|
}
|
|
}
|