Skip to content

Commit

Permalink
[WIP] Fix styling of tutorial pages
Browse files Browse the repository at this point in the history
  • Loading branch information
kbhawkey committed Oct 25, 2019
1 parent ff5d03a commit 8f2407f
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 20 deletions.
2 changes: 2 additions & 0 deletions content/en/docs/tutorials/kubernetes-basics/_index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@

<body>

<link href="/docs/tutorials/kubernetes-basics/public/css/styles.css" rel="stylesheet">

<div class="layout" id="top">

<main class="content">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<body>

<link href="/docs/tutorials/kubernetes-basics/public/css/styles.css" rel="stylesheet">
<link href="/docs/tutorials/kubernetes-basics/public/css/styles.css" rel="stylesheet">

<div class="layout" id="top">

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<body>

<link href="/docs/tutorials/kubernetes-basics/public/css/styles.css" rel="stylesheet">
<link href="/docs/tutorials/kubernetes-basics/public/css/styles.css" rel="stylesheet">

<div class="layout" id="top">

Expand Down
54 changes: 38 additions & 16 deletions content/en/docs/tutorials/kubernetes-basics/public/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

/*
html
{
font-family: sans-serif;
Expand Down Expand Up @@ -91,6 +93,7 @@ h1
margin: .67em 0;
}
*/

mark
{
Expand Down Expand Up @@ -366,17 +369,22 @@ th
}
}

/*
*
{
box-sizing: border-box;
}
*/

/*
*:before,
*:after
{
box-sizing: border-box;
}
*/

/*
html
{
font-size: 10px;
Expand All @@ -393,6 +401,7 @@ body
color: #333;
background-color: #fff;
}
*/

input,
button,
Expand All @@ -404,6 +413,7 @@ textarea
line-height: inherit;
}

/*
a
{
text-decoration: none;
Expand All @@ -422,6 +432,8 @@ a:focus
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
*/


figure
{
Expand Down Expand Up @@ -511,6 +523,7 @@ hr
cursor: pointer;
}

/*
h1,
h2,
h3,
Expand Down Expand Up @@ -560,7 +573,10 @@ h6 .small,
color: #777;
}
*/


/*
h1,
.h1,
h2,
Expand All @@ -586,7 +602,9 @@ h3 .small,
{
font-size: 65%;
}
*/

/*
h4,
.h4,
h5,
Expand All @@ -612,12 +630,15 @@ h6 .small,
{
font-size: 75%;
}
*/

/*
h1,
.h1
{
font-size: 36px;
}
*/

h2,
.h2
Expand All @@ -637,6 +658,7 @@ h4,
font-size: 18px;
}

/*
h5,
.h5
{
Expand All @@ -648,6 +670,7 @@ h6,
{
font-size: 12px;
}
*/

p
{
Expand Down Expand Up @@ -853,6 +876,7 @@ a.bg-danger:focus
border-bottom: 1px solid #eee;
}

/*
ul,
ol
{
Expand Down Expand Up @@ -888,6 +912,9 @@ ol ol
padding-right: 5px;
padding-left: 5px;
}
*/



dl
{
Expand Down Expand Up @@ -8769,6 +8796,7 @@ button.close
border-top: 1px solid #e5eaf9;
}

/*
.content
{
position: relative;
Expand All @@ -8788,6 +8816,8 @@ button.close
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
*/

@media screen and (max-width: 998px)
{
.content
Expand Down Expand Up @@ -9006,6 +9036,7 @@ button.close
font-size: 16px;
}

/*
.content__likes
{
text-align: center;
Expand Down Expand Up @@ -9532,7 +9563,9 @@ button.close
display: none;
}
}
*/

/*
.scrolltop
{
position: fixed;
Expand Down Expand Up @@ -9603,17 +9636,16 @@ button.close
opacity: 1;
}
*/


/*
body
{
font-family: Roboto, 'Helvetica Neue', Helvetica, 'Open Sans', Arial, sans-serif;
font-size: 15px;
line-height: 1.5;
/*display: -webkit-box;*/
/*display: -ms-flexbox;*/
/*display: flex;*/

min-height: 100vh;
background: #eee;
Expand Down Expand Up @@ -9672,6 +9704,8 @@ p a:hover
{
text-decoration: none;
}
*/


.breadcrumb
{
Expand Down Expand Up @@ -10015,19 +10049,7 @@ p a:hover
}
}

.quiz__list
{
display: -webkit-box;
display: -ms-flexbox;
display: flex;

margin: 30px 0 0;
padding: 0 0 40px;

-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
@media screen and (max-width: 992px)
{
.quiz__list
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

<body>

<link href="/docs/tutorials/kubernetes-basics/public/css/styles.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab:300,400,700" rel="stylesheet">
<link href="/docs/tutorials/kubernetes-basics/public/css/styles.css" rel="stylesheet">


<div class="layout" id="top">

Expand Down

0 comments on commit 8f2407f

Please sign in to comment.