119 lines
2.2 KiB
SCSS
119 lines
2.2 KiB
SCSS
%text-gradient {
|
|
background-image: linear-gradient(180deg, #d51a2f, #0cacaa);
|
|
background-clip: text;
|
|
color: transparent;
|
|
}
|
|
|
|
body {
|
|
transform: scale(1);
|
|
width: 1100px;
|
|
background: url("../common/theme/bg-01.jpg");
|
|
}
|
|
|
|
.container {
|
|
background: {
|
|
image: url(./main.png);
|
|
position: right center;
|
|
repeat: no-repeat;
|
|
size: cover;
|
|
}
|
|
|
|
padding: 20px 25px 10px 25px;
|
|
width: 1130px;
|
|
}
|
|
|
|
.head-box {
|
|
margin: 60px 0 0 0;
|
|
padding-bottom: 0;
|
|
|
|
.title {
|
|
font-size: 50px;
|
|
}
|
|
}
|
|
|
|
.cont-box {
|
|
margin-top: 20px;
|
|
margin-bottom: 30px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
font-size: 20px;
|
|
background: rgba(255, 255, 255, 0.3);
|
|
box-shadow: 30px 30px 30px -10px rgba(0, 0, 0, 0.15),
|
|
inset 15px 15px 10px rgba(255, 255, 255, 0.75),
|
|
-15px -15px 35px rgba(255, 255, 255, 0.55),
|
|
inset -1px -1px 10px rgba(0, 0, 0, 0.2);
|
|
backdrop-filter: blur(10px);
|
|
border-radius: 30px;
|
|
}
|
|
|
|
.help-group {
|
|
@extend %text-gradient;
|
|
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
padding: 15px 15px 10px 20px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.help-table {
|
|
text-align: center;
|
|
border-collapse: collapse;
|
|
margin: 0;
|
|
border-radius: 0 0 10px 10px;
|
|
display: table;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
color: #d63d2f;
|
|
|
|
.tr {
|
|
display: table-row;
|
|
|
|
&:last-child {
|
|
.td {
|
|
padding-bottom: 12px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.th {
|
|
background: rgba(34, 41, 51, 0.5);
|
|
}
|
|
}
|
|
|
|
.help-table .td,
|
|
.help-table .th {
|
|
font-size: 14px;
|
|
display: table-cell;
|
|
box-shadow: 0 0 1px 0 #888 inset;
|
|
padding: 12px 0 12px 50px;
|
|
line-height: 24px;
|
|
position: relative;
|
|
text-align: left;
|
|
width: 33%;
|
|
}
|
|
|
|
.help-icon {
|
|
width: 40px;
|
|
height: 40px;
|
|
display: block;
|
|
position: absolute;
|
|
background: url("icon.png") 0 0 no-repeat;
|
|
background-size: 500px auto;
|
|
border-radius: 5px;
|
|
left: 6px;
|
|
top: 12px;
|
|
transform: scale(0.85);
|
|
}
|
|
|
|
.help-title {
|
|
@extend %text-gradient;
|
|
display: inline-block;
|
|
font-size: 22px;
|
|
line-height: 24px;
|
|
}
|
|
|
|
.help-desc {
|
|
display: block;
|
|
font-size: 19px;
|
|
line-height: 18px;
|
|
} |