Skip to content

Commit

Permalink
Merge pull request #3145 from juliemturner/version-4
Browse files Browse the repository at this point in the history
Added styling to older docs
  • Loading branch information
patrick-rodgers authored Oct 4, 2024
2 parents 39cf2ec + 7977cc8 commit ee34669
Show file tree
Hide file tree
Showing 314 changed files with 100 additions and 469,663 deletions.
43 changes: 37 additions & 6 deletions docs/v1/documentation/css/extra.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
padding: 0 0.25 0.5 !important;
}

.md-header{
.md-header {
height: 75px;
}

.md-container{
.md-container {
padding-top: 70px;
}

.md-sidebar[data-md-state="lock"]{
.md-sidebar[data-md-state="lock"] {
padding-top: 75px;
}

Expand All @@ -27,7 +27,38 @@
}

@media only screen and (max-width: 76.1875em) {
.md-nav--primary .md-nav__title--site .md-nav__button {
width: 150px;
}
.md-nav--primary .md-nav__title--site .md-nav__button {
width: 150px;
}
}

body {
min-height: 100vh;
min-width: 100vw;
margin: 0;
background-color: light-dark(whitesmoke, black);

&:before {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
content: "V1 \A Deprecated";
display: block;
box-sizing: border-box;
padding: 20vh;
font-size: clamp(3rem, 20vw, 8rem);
height: 100vh;
width: 100vw;
text-align: center;
z-index: -1;
color: silver;
font-weight: 900;
font-family: sans-serif;
text-transform: uppercase;
transform: rotate(-45deg);
transform-origin: center;
white-space: pre-wrap;
}
}
31 changes: 31 additions & 0 deletions docs/v2/css/extra.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,35 @@
.md-nav--primary .md-nav__title--site .md-nav__button {
width: 150px;
}
}

body {
min-height: 100vh;
min-width: 100vw;
margin: 0;
background-color: light-dark(whitesmoke, black);

&:before {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
content: "V2 \A Deprecated";
display: block;
box-sizing: border-box;
padding: 20vh;
font-size: clamp(1rem, 10vw, 5rem);
height: 100vh;
width: 100vw;
text-align: center;
z-index: -1;
color: silver;
font-weight: 900;
font-family: sans-serif;
text-transform: uppercase;
transform: rotate(-45deg);
transform-origin: center;
white-space: pre-wrap;
}
}
32 changes: 32 additions & 0 deletions docs/v3/css/extra.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,36 @@
.md-nav--primary .md-nav__title--site .md-nav__button {
width: 150px;
}
}

body {
min-height: 100vh;
min-width: 100vw;
margin: 0;
background-color: light-dark(whitesmoke, black);

&:before {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
content: "V3 \A Deprecated";

display: block;
box-sizing: border-box;
padding: 20vh;
font-size: clamp(1rem, 10vw, 5rem);
height: 100vh;
width: 100vw;
text-align: center;
z-index: -1;
color: silver;
font-weight: 900;
font-family: sans-serif;
text-transform: uppercase;
transform: rotate(-45deg);
transform-origin: center;
white-space: pre-wrap;
}
}
Loading

0 comments on commit ee34669

Please sign in to comment.