mirror of https://github.com/MKRhere/pw
Personal Website - https://mkr.pw
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.1 KiB
72 lines
1.1 KiB
html {
|
|
font-size: 14px;
|
|
font-family: 'Roboto', Arial, Helvetica, sans-serif;
|
|
font-weight: 300;
|
|
color: #6633ff; }
|
|
|
|
body {
|
|
width: 100%;
|
|
overflow-x: hidden;
|
|
background: #000; }
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-weight: 300;
|
|
margin: 0; }
|
|
|
|
p {
|
|
margin: 0; }
|
|
|
|
h1 {
|
|
font-size: 2.8em; }
|
|
|
|
.t-right {
|
|
text-align: right; }
|
|
|
|
.t-center {
|
|
text-align: center; }
|
|
|
|
.t-white {
|
|
color: #fff; }
|
|
|
|
.t-uline {
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.5); }
|
|
|
|
.tooltip {
|
|
display: none;
|
|
width: 100%;
|
|
position: absolute;
|
|
top: 3em;
|
|
left: 0;
|
|
z-index: 200;
|
|
background: #6633ff;
|
|
color: #fff;
|
|
padding: 0.8em;
|
|
font-size: 0.8em;
|
|
text-align: left; }
|
|
|
|
@media screen and (max-width: 600px) {
|
|
.t-right {
|
|
text-align: center; } }
|
|
|
|
.row-full {
|
|
display: block;
|
|
display: grid;
|
|
align-content: center;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: auto;
|
|
height: 100vh;
|
|
grid-template-columns: [full] 100%; }
|
|
|
|
.col-full {
|
|
align-self: center;
|
|
grid-area: full;
|
|
margin: auto; }
|
|
|
|
@media screen and (max-width: 600px) {
|
|
.row-full {
|
|
margin: 40vh auto;
|
|
height: auto; } }
|
|
|
|
.is-relative {
|
|
position: relative; }
|
|
|