31 lines
748 B
SCSS
Executable File
Vendored
31 lines
748 B
SCSS
Executable File
Vendored
@use "../abstracts/variables" as *;
|
|
|
|
.light.cc_dialog button.cc_b_ok, .light.cc_dialog button.cc_b_cp {
|
|
padding: 10px 39px;
|
|
border-radius: 3px;
|
|
font-family: Nunito, serif;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
line-height: 0.93;
|
|
text-align: center;
|
|
margin-bottom: 10px;
|
|
text-decoration: none;
|
|
text-transform: uppercase;
|
|
}
|
|
.light.cc_dialog button.cc_b_ok {
|
|
background-image: linear-gradient(to right, #0f259d, #5ba8f4);
|
|
color: $text-inverted-color;
|
|
}
|
|
.light.cc_dialog .cc_dialog_headline {
|
|
font-family: Montserrat, serif;
|
|
font-weight: 600;
|
|
line-height: 1.15;
|
|
color: $text-dark-color;
|
|
}
|
|
.light.cc_dialog .cc_dialog_text {
|
|
font-family: Nunito, serif;
|
|
font-size: 15px;
|
|
line-height: 1.6;
|
|
color: $text-dark-color;
|
|
}
|