27 lines
386 B
CSS
27 lines
386 B
CSS
.class {
|
|
margin: -10px .5vh;
|
|
padding: 5vmin 9.5px 1px;
|
|
border: 3px solid black;
|
|
border-bottom-width: 1px;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
}
|
|
.class2 {
|
|
border: 1px solid black;
|
|
margin-bottom: 1px;
|
|
font-size: 20px;
|
|
line-height: 30px;
|
|
}
|
|
@media (min-width: 750px) {
|
|
.class3 {
|
|
font-size: 16px;
|
|
line-height: 22px;
|
|
}
|
|
}
|
|
|
|
/*
|
|
.class {
|
|
font-size: 16px;
|
|
}
|
|
*/
|