34 lines
506 B
CSS
34 lines
506 B
CSS
@font-face {
|
|
font-family: "Outfit";
|
|
src: url("../../groupsData/static/Outfit-VariableFont_wght.ttf");
|
|
}
|
|
|
|
body {
|
|
font-family: "Outfit";
|
|
font-size: 14px;
|
|
}
|
|
|
|
@page {
|
|
margin: 0 50px 0 50px;
|
|
padding: 0;
|
|
size: A4;
|
|
}
|
|
|
|
#labels {
|
|
margin-top: 20px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.container {
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-direction: column;
|
|
width: 83mm;
|
|
height: 52mm;
|
|
padding: 10px;
|
|
}
|