feat: text on logo
This commit is contained in:
parent
de751e1595
commit
a41c6717c8
26
src/App.css
26
src/App.css
@ -33,9 +33,11 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
h1,
|
h1,
|
||||||
h2 {
|
h2,
|
||||||
|
h3 {
|
||||||
margin-top: 0px;
|
margin-top: 0px;
|
||||||
margin-bottom: 0px;
|
margin-bottom: 0px;
|
||||||
|
padding: 4px 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
@ -154,6 +156,28 @@ button {
|
|||||||
font-size: 150%;
|
font-size: 150%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.logo {
|
||||||
|
position: relative;
|
||||||
|
text-align: center;
|
||||||
|
height: 169px;
|
||||||
|
img {
|
||||||
|
display: block;
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
h3 {
|
||||||
|
position: absolute;
|
||||||
|
top: 33%;
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
color: aliceblue;
|
||||||
|
background-color: black;
|
||||||
|
border-radius: unset;
|
||||||
|
letter-spacing: 8px;
|
||||||
|
padding: 0px 40px;
|
||||||
|
font-family: monospace;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.loader {
|
.loader {
|
||||||
display: block;
|
display: block;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
12
src/App.tsx
12
src/App.tsx
@ -5,11 +5,13 @@ import Rankings from "./Rankings";
|
|||||||
function App() {
|
function App() {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<a href={baseUrl}>
|
<div className="logo">
|
||||||
<img alt="logo" height="128px" src="logo.svg" />
|
<a href={baseUrl}>
|
||||||
</a>
|
<img alt="logo" height="66%" src="logo.svg" />
|
||||||
<h1>cutt</h1>
|
</a>
|
||||||
<span className="grey">cool ultimate team tool</span>
|
<h3 className="centered">cutt</h3>
|
||||||
|
<span className="grey">cool ultimate team tool</span>
|
||||||
|
</div>
|
||||||
<Rankings />
|
<Rankings />
|
||||||
<footer>
|
<footer>
|
||||||
<p className="grey">
|
<p className="grey">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user