스타일 통일화 작업
This commit is contained in:
@@ -1,7 +1,6 @@
|
|||||||
/* Reset */
|
/* Reset */
|
||||||
* {
|
* {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
color: #1a1a1a;
|
|
||||||
}
|
}
|
||||||
body,
|
body,
|
||||||
div,
|
div,
|
||||||
|
|||||||
@@ -65,7 +65,7 @@
|
|||||||
width: 37px;
|
width: 37px;
|
||||||
height: 37px;
|
height: 37px;
|
||||||
}
|
}
|
||||||
s &:hover,
|
&:hover,
|
||||||
&:active,
|
&:active,
|
||||||
&:focus-within,
|
&:focus-within,
|
||||||
&:focus {
|
&:focus {
|
||||||
|
|||||||
@@ -47,7 +47,7 @@
|
|||||||
font-size: 36px;
|
font-size: 36px;
|
||||||
font-family: @baseFontBold;
|
font-family: @baseFontBold;
|
||||||
color: @COLOR_BLACK;
|
color: @COLOR_BLACK;
|
||||||
background-color: skyblue;
|
background-color: @COLOR_SKYBLUE;
|
||||||
padding: 30px 60px;
|
padding: 30px 60px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -66,7 +66,7 @@
|
|||||||
|
|
||||||
.info {
|
.info {
|
||||||
width: 1066px;
|
width: 1066px;
|
||||||
background-color: #e6ebf0;
|
background-color: @COLOR_SKYBLUE;
|
||||||
padding: 60px;
|
padding: 60px;
|
||||||
|
|
||||||
.textLayer {
|
.textLayer {
|
||||||
|
|||||||
@@ -37,6 +37,7 @@
|
|||||||
|
|
||||||
@COLOR_BLACK: #000000;
|
@COLOR_BLACK: #000000;
|
||||||
@COLOR_NAVY: #2c343f;
|
@COLOR_NAVY: #2c343f;
|
||||||
|
@COLOR_SKYBLUE: #e7ebef;
|
||||||
|
|
||||||
/* BUTTON */
|
/* BUTTON */
|
||||||
@BTN_MAIN_GREY: #7a808d;
|
@BTN_MAIN_GREY: #7a808d;
|
||||||
|
|||||||
@@ -73,9 +73,10 @@ export default function IntroPanel({ children, ...rest }) {
|
|||||||
<TPanel className={css.panel} isTabActivated={false}>
|
<TPanel className={css.panel} isTabActivated={false}>
|
||||||
<Container {...rest} className={css.introLayout}>
|
<Container {...rest} className={css.introLayout}>
|
||||||
<div className={css.title}>
|
<div className={css.title}>
|
||||||
{`Welcome to `}
|
{$L(`Welcome to `)}
|
||||||
<span className={css.txtPoint}>
|
<span className={css.txtPoint}>
|
||||||
Sh<span className={css.pointColor}>o</span>p Time !
|
Sh<span className={css.pointColor}>{$L("o")}</span>
|
||||||
|
{$L(`p Time !`)}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div className={css.description}>{description}</div>
|
<div className={css.description}>{description}</div>
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
.introLayout {
|
.introLayout {
|
||||||
.flex(@direction: column);
|
.flex(@direction: column);
|
||||||
background-color: #f2f6fb;
|
background-color: @BG_COLOR_03;
|
||||||
font-family: @baseFont;
|
font-family: @baseFont;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|||||||
Reference in New Issue
Block a user