pylabel/examples/hello.css
2023-02-07 12:54:05 +11:00

33 lines
557 B
CSS

DIV.label {
background-color: red;
color: white;
}
DIV.hello-tag {
height: 100%;
display: flex;
text-align: center;
align-items: stretch;
flex-direction: column;
justify-content: space-between;
font-family: Arial;
font-size: 10pt;
}
.greeting {
font-size: 20pt;
font-weight: bold;
}
.name {
font-family: 'Times New Roman', Times, serif;
font-weight: bold;
font-size: 20pt;
border-radius: 10px;
background-color: white;
flex-grow: 1;
margin-bottom: 2mm;
color: #333;
}