16 lines
351 B
CSS
16 lines
351 B
CSS
|
/* Example stylesheet */
|
||
|
.label-1 {
|
||
|
font-size: 36px;
|
||
|
font-weight: normal;
|
||
|
color: rgba(255, 255, 255, 0.3);
|
||
|
background-color: rgba(10, 10, 10, 0);
|
||
|
border-radius: 5px;
|
||
|
}
|
||
|
.label-2 {
|
||
|
font-size: 26px;
|
||
|
font-weight: normal;
|
||
|
color: rgba(255, 255, 255, 0.3);
|
||
|
background-color: rgba(10, 10, 10, 0);
|
||
|
border-radius: 5px;
|
||
|
}
|