aboutsummaryrefslogtreecommitdiff
path: root/assets/css/blueprint.css
blob: 5c3c67d922bfbc4d129890fa59efda21ab659d7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
@charset "UTF-8";

@import url("../fonts/spacemono.css");
@import url("../fonts/firasans-regular.css");

html, body {
  background-color: white;
  font-family: "Space Mono", Monaco, monospace !important;
}

p {
  font-family: "Fira Sans", sans-serif;
}


nav {
  background: white;
  background: rgba(255, 255, 255, .8);
  z-index: 10;
  /*padding: 1rem 2rem;*/

  position: fixed;
  width: 100%;
  /*position: -webkit-sticky;
  position: sticky;
  top: 0;*/

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

nav a {
  display:  block;
  padding: 1rem 2rem;
  line-height: 1;

  font-weight: bold;
  text-decoration: none;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

nav h1 {
  margin:  0;
}
nav .home {
  font-weight:  normal;
  font-size: 2rem;
}

nav .nav-left, nav .nav-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
nav .nav-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
nav .nav-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

nav ul {
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header {
  height: 100vh;
  width: 100%;
  background-image: url("../images/ronce/illustration-ronce_1200x765px.png");
  /* Create the parallax scrolling effect */
  /*background-attachment: fixed;*/
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 5rem;
  padding: 0;
}

header > p {
  width: 40%;
  position: relative;
  left: 55%;
  bottom: -75%;
  text-align: right;
}


header > p, nav a {
  color: white;
  /* color | offset-x | offset-y | blur-radius */
  text-shadow: black 0px 0px 4px;
  margin: 0;
}



footer {
  border-top: black solid 2px;
  margin-top: 3rem;
  padding-top: 2rem;
}