1/*
2body {
3 background: linear-gradient(to right top, $button-border 50%, $button-background 50%);
4 background-size: 100% calc(100% - 100vh + #{5px});
5 background-repeat: no-repeat;
6}
7
8body:before {
9 content:'';
10 position: fixed;
11 top: 5px;
12 bottom: 0;
13 width: 100%;
14 z-index: -1;
15 background: $light;
16}
17 */
18
19.title-wrapper {
20 max-width: 800px;
21 margin: 0 auto;
22 padding-top: 20px;
23 padding-bottom: 10px;
24
25 .title {
26 font: bold 37px Heliotrope;
27 }
28
29 .menu {
30 float: right;
31 margin-top: 11px;
32 font-size: 29px;
33 ul {
34 list-style-type: none;
35 margin: 0px;
36 padding: 0px;
37 }
38 li {
39 display: inline-block;
40 padding-left: 15px;
41 }
42 }
43 a {
44 text-decoration: none;
45 color: inherit;
46 }
47 a:visited {
48 color: inherit;
49 }
50 border-bottom: 2px solid;
51 @media (max-width: 835px) {
52 text-align: center;
53 .menu {
54 float: none;
55 ul {
56 padding: 5px 0px 5px;
57 }
58 li {
59 padding-left: 0px;
60 padding-right: 15px;
61 }
62
63 }
64 }
65}