Compare commits

...

2 Commits

Author SHA1 Message Date
zomo
984c099dc6 rearranged css 2025-11-27 19:26:23 -06:00
zomo
a0b2f09c77 updated newclient button 2025-11-27 19:24:59 -06:00
8 changed files with 104 additions and 90 deletions

BIN
public/newclient.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

View File

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View File

@@ -14,7 +14,7 @@ function Background() {
<Shader>
<Swirl
colorA="#00529b"
colorB="#087dca"
colorB="#0996ec"
speed={0.4}
detail={3.6}
blend={50}

View File

@@ -1,10 +1,15 @@
import './buttonNew.scss'
import newclientImage from '/newclient.png'
function ButtonNew() {
return (
<div className="client newclient">
<div className="content"></div>
<div className="new-button">Start</div>
<img src={newclientImage} />
<div className="content">
<div>Join with the</div>
<div>New Client</div>
</div>
<div className="button">Start</div>
</div>
)
}

View File

@@ -1,16 +1,16 @@
import './buttonOld.scss'
import oldclientWave from '/oldclient-wave.svg'
import oldclientImg from '/oldclient.svg'
function ButtonOld() {
return (
<div className="client oldclient">
<div className="oldclient-inner">
<img src={oldclientImg} />
<div className="content">
<img src={oldclientWave} />
<div>JOIN WITH THE</div>
<div>OLD CLIENT</div>
</div>
<div className="old-button">START</div>
<div className="button">START</div>
</div>
</div>
)

View File

@@ -7,24 +7,34 @@
background: rgba(9, 150, 236, 1);
border-radius: 5px;
color: white;
font-family: 'ProximaNova Bold', Helvetica, Arial, sans-serif;
text-decoration: none;
font-size: 24px;
text-align: center;
display: flex;
align-items: center;
flex-direction: column;
.content {
flex-grow: 1;
}
img {
display: inline;
height: 60%;
margin-top: 30px;
margin-bottom: 30px;
}
.new-button {
.content {
flex-grow: 1;
text-align: center;
}
.button {
display: inline-block;
user-select: none;
color: white;
font-family: 'ProximaNova Bold', Helvetica, Arial, sans-serif;
text-decoration: none;
font-size: 18px;
text-align: center;
width: 226px;
height: 58px;
@@ -47,3 +57,4 @@
background: linear-gradient(-180deg, #004093 0%, #22a4f3 100%);
}
}
}

View File

@@ -14,13 +14,10 @@
font-style: italic;
text-align: center;
background: linear-gradient(0deg, #016ec1 0%, #0280cd 100%);
padding: 5px;
box-shadow: rgba(67, 67, 67, 0.8) 0 0 5px;
.oldclient-inner {
border-radius: 25px; // border-radius - border - padding
@@ -39,22 +36,20 @@
align-items: center;
flex-direction: column;
img {
width: 100%;
height: 60%;
margin-bottom: 30px;
}
.content {
flex-grow: 1;
text-align: center;
padding: 20px;
img {
width: 100%;
height: 70%;
margin-bottom: 30px;
}
}
}
}
.old-button {
.button {
display: inline-block;
user-select: none;
@@ -96,3 +91,4 @@
);
}
}
}

View File

@@ -16,6 +16,8 @@
margin-left: 50px;
box-shadow: rgba(67, 67, 67, 0.8) 0 0 5px;
&:nth-child(0) {
margin-left: 0px;
}