WIP
This commit is contained in:
@@ -1,3 +1,3 @@
|
|||||||
# ShareChess
|
# ShareChess
|
||||||
|
|
||||||
This repo contains production files for [sharechess.github.io](https://sharechess.github.io/). You can find a source code here: [github.com/sharechess/sharechess](https://github.com/sharechess/sharechess).
|
This repo contains production files for [sharechess.github.io](https://sharechess.github.io/). You can find the source code here: [github.com/sharechess/sharechess](https://github.com/sharechess/sharechess).
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
top: 0;
|
top: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 2fr 1fr;
|
grid-template-columns: 1fr 1fr;
|
||||||
font-size: 1.8rem;
|
font-size: 1.8rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -33,14 +33,20 @@
|
|||||||
font-size: 2.4rem;
|
font-size: 2.4rem;
|
||||||
position: relative;
|
position: relative;
|
||||||
top: -0.2rem;
|
top: -0.2rem;
|
||||||
color: var(--color-text);
|
|
||||||
padding-top: 1rem;
|
padding-top: 1rem;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
margin-left: 0.5rem;
|
margin-left: 0.5rem;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header__options-ico:hover {
|
.header__options-ico,
|
||||||
|
.header__options-ico > a,
|
||||||
|
.header__options-ico > a:visited {
|
||||||
|
color: var(--color-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
.header__options-ico:hover,
|
||||||
|
.header__options-ico > a:hover {
|
||||||
color: var(--color-btn);
|
color: var(--color-btn);
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ const Header: Component<{ handlers: Handlers }> = (props) => {
|
|||||||
{/* <div class="header__options-ico" onClick={() => {}}>
|
{/* <div class="header__options-ico" onClick={() => {}}>
|
||||||
<i class="las la-question-circle"></i>
|
<i class="las la-question-circle"></i>
|
||||||
</div> */}
|
</div> */}
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="header__options-ico"
|
class="header__options-ico"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
@@ -63,6 +64,11 @@ const Header: Component<{ handlers: Handlers }> = (props) => {
|
|||||||
}}
|
}}
|
||||||
></i>
|
></i>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="header__options-ico" title="SOURCE CODE">
|
||||||
|
<a href="https://github.com/sharechess/sharechess" target="_blank">
|
||||||
|
<i class="lab la-github"></i>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user