improvements
This commit is contained in:
parent
c7165ec051
commit
5cb7412575
12 changed files with 105 additions and 32 deletions
100
css/index.css
Normal file
100
css/index.css
Normal file
|
@ -0,0 +1,100 @@
|
|||
:root {
|
||||
--primary-color: #feb938;
|
||||
--secondary-color: #a3741d;
|
||||
--background-color: #000000;
|
||||
--card-bg-color: #121212;
|
||||
}
|
||||
|
||||
* {
|
||||
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: var(--background-color);
|
||||
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;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
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: 4px solid var(--primary-color);
|
||||
box-shadow: 0px 0px 8px var(--primary-color);
|
||||
background: var(--card-bg-color);
|
||||
border-radius: 3%;
|
||||
text-align: center; padding: 25px; margin: 16px;
|
||||
}
|
||||
|
||||
.card img {
|
||||
border: 4px 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;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.links li { margin: 4px; }
|
||||
.list li { margin-top: 8px; }
|
||||
|
||||
@media only screen and (max-width: 600px) {
|
||||
.card img { width: 150px; height: auto; }
|
||||
}
|
||||
|
||||
.blog-card {
|
||||
margin: 8px 0;
|
||||
background: var(--card-bg-color);
|
||||
border: 4px solid var(--primary-color);
|
||||
border-radius: 2%;
|
||||
box-shadow: 0px 0px 8px var(--primary-color);
|
||||
padding: 16px;
|
||||
}
|
||||
|
||||
.blog-card h4 { margin: 4px 0; width: 100%; text-align: left; }
|
||||
|
||||
.blog-card a {
|
||||
font-size: 24px;
|
||||
margin: 8px auto;
|
||||
text-align: center;
|
||||
display: block;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue