Skip to content

Commit

Permalink
Update template.css
Browse files Browse the repository at this point in the history
  • Loading branch information
sm64js-test authored Mar 17, 2021
1 parent fcfd50b commit 0730a0d
Showing 1 changed file with 98 additions and 1 deletion.
99 changes: 98 additions & 1 deletion template.css
Original file line number Diff line number Diff line change
@@ -1 +1,98 @@
a,a:focus,a:hover{font-weight:400;color:#f6fb7b}body,html{background-color:#000}body{display:-ms-flexbox;display:-webkit-box;display:flex;-ms-flex-pack:center;-webkit-box-pack:center;justify-content:center;color:#fff;text-shadow:0 .05rem .1rem rgba(0,0,0,.5);box-shadow:inset 0 0 5rem rgba(0,0,0,.5)}.cover-container{max-width:54em}.popover{max-width:1000px}.masthead{margin-top:1rem;margin-bottom:2rem}.nav-masthead .nav-link{padding:.25rem 0;font-weight:700;color:hsla(0,0%,100%,.5);background-color:initial;border-bottom:.25rem solid transparent}.nav-masthead .nav-link:focus,.nav-masthead .nav-link:hover{border-bottom-color:hsla(0,0%,100%,.25)}.nav-masthead .nav-link+.nav-link{margin-left:1rem}.nav-masthead .active{color:#fff;border-bottom-color:#fff}@media (min-width:48em){.masthead-brand{float:left}.nav-masthead{float:right}}.cover{padding:0 1.5rem}body,html{width:100%;height:100%;margin:0;border:0;display:block}
/*
* Globals
*/

/* Links */
a,
a:focus,
a:hover {
font-weight: 400;
color: #f6fb7b;
}


/*
* Base structure
*/

html,
body {
height: 100%;
background-color: #000000;
}

body {
display: -ms-flexbox;
display: -webkit-box;
display: flex;
-ms-flex-pack: center;
-webkit-box-pack: center;
justify-content: center;
color: #fff;
text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}

.cover-container {
max-width: 54em;
}

.popover {
max-width: 1000px;
}

/*
* Header
*/
.masthead {
margin-top: 1rem;
margin-bottom: 2rem;
}

.nav-masthead .nav-link {
padding: .25rem 0;
font-weight: 700;
color: rgba(255, 255, 255, .5);
background-color: transparent;
border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
border-bottom-color: rgba(255, 255, 255, .25);
}

.nav-masthead .nav-link + .nav-link {
margin-left: 1rem;
}

.nav-masthead .active {
color: #fff;
border-bottom-color: #fff;
}

@media (min-width: 48em) {
.masthead-brand {
float: left;
}

.nav-masthead {
float: right;
}
}


/*
* Cover
*/
.cover {
padding: 0 1.5rem;
}

html, body {
width: 100%;
height: 100%;
margin: 0px;
border: 0;
display: block; /* No floating content on sides */
}

0 comments on commit 0730a0d

Please sign in to comment.