45 lines
814 B
Plaintext
45 lines
814 B
Plaintext
@text-normal: var(--text-normal);
|
|
// @common-image-about-path - defined in webpack config
|
|
|
|
.about {
|
|
.page-content {
|
|
text-align: center;
|
|
}
|
|
|
|
.content-block:first-child {
|
|
margin: 15px 0;
|
|
}
|
|
|
|
.content-block {
|
|
margin: 0 auto 15px;
|
|
|
|
a {
|
|
color: @text-normal;
|
|
}
|
|
}
|
|
|
|
h3 {
|
|
font-weight: normal;
|
|
margin: 0;
|
|
color: @text-normal;
|
|
|
|
&.vendor {
|
|
color: @text-normal;
|
|
font-weight: bold;
|
|
margin-top: 15px;
|
|
}
|
|
}
|
|
|
|
p > label {
|
|
color: @text-normal;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.logo {
|
|
display: inline-block;
|
|
width: 100%;
|
|
height: 55px;
|
|
background: ~"url(@{common-image-about-path}/logo_s.svg) no-repeat center";
|
|
}
|
|
}
|