first commit
This commit is contained in:
commit
3bf7c08caa
7 changed files with 227 additions and 0 deletions
100
index.css
Normal file
100
index.css
Normal file
|
@ -0,0 +1,100 @@
|
|||
:root {
|
||||
--primary-color: #feb938;
|
||||
--secondary-color: #a3741d;
|
||||
--card-bg-color: #101010;
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
user-select: none;
|
||||
font-family: "Cousine", monospace;
|
||||
font-style: normal;
|
||||
font-weight: bold;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.crt {
|
||||
content: " ";
|
||||
display: block;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
background: linear-gradient(#12101000 50%, #00000040 50%), linear-gradient(90deg, #FF00000F, #00FF0005, #0000FF0F);
|
||||
z-index: 2;
|
||||
background-size: 100% 2px, 3px 100%;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
body {
|
||||
background: linear-gradient(0deg, #00020F 0%, #030416 50%, #020322 100%) no-repeat center fixed;
|
||||
color: var(--primary-color);
|
||||
text-shadow: 1px 1px 10px var(--primary-color);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
ul { list-style-type: none; margin-bottom: 2px; }
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
text-shadow: none;
|
||||
color: var(--secondary-color);
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: var(--primary-color);
|
||||
text-shadow: 1px 1px 10px var(--primary-color);
|
||||
}
|
||||
|
||||
.card {
|
||||
border: 3px solid var(--primary-color);
|
||||
box-shadow: 0px 0px 8px var(--primary-color);
|
||||
background: var(--card-bg-color);
|
||||
border-radius: 5%;
|
||||
text-align: center;
|
||||
padding: 25px;
|
||||
margin: 16px;
|
||||
}
|
||||
|
||||
.card img {
|
||||
border: 3px solid var(--primary-color);
|
||||
box-shadow: 0px 0px 8px var(--primary-color);
|
||||
background-color: var(--secondary-color);
|
||||
border-radius: 50%;
|
||||
width: 225px;
|
||||
height: auto;
|
||||
margin-top: 16px;
|
||||
}
|
||||
|
||||
.card p {
|
||||
margin-top: 16px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.links ul {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.links li { margin: 4px; }
|
||||
.list li { margin-top: 8px; }
|
||||
|
||||
@media only screen and (max-width: 600px) {
|
||||
.card {
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
background: none;
|
||||
}
|
||||
|
||||
.card img {
|
||||
width: 150px;
|
||||
height: auto;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue