Skip to content

Commit adc9b9a

Browse files
DorthuGitHub Enterprise
authored andcommitted
Merge pull request #48 from jsager/changelog-attempt-01
[WIP] Changelog attempt 01
2 parents 77c40f6 + f7ffd4e commit adc9b9a

File tree

5 files changed

+1076
-1
lines changed

5 files changed

+1076
-1
lines changed

changelog/changelog-style.css

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
html {
2+
box-sizing: border-box;
3+
}
4+
5+
body {
6+
flex-direction: column;
7+
flex-grow: 1;
8+
color: #000;
9+
background: #fff;
10+
font-family: 'Lato',sans-serif;
11+
font-weight: 400;
12+
font-size: 16px;
13+
line-height: 1.5;
14+
padding-left: 2em;
15+
}
16+
17+
header {
18+
background: #323232;
19+
}
20+
21+
.release-header {
22+
display: block;
23+
color: #ffffff;
24+
font-weight: normal;
25+
margin-top: 2em;
26+
margin-bottom: 1em;
27+
background: #3bb878;
28+
padding: 0.6em;
29+
height: 32px;
30+
}
31+
32+
.release_header:after {
33+
content: "";
34+
display: table;
35+
clear: both;
36+
}
37+
38+
.release-header .release-date {
39+
font-size: 1.4em;
40+
float: left;
41+
vertical-align: middle;
42+
}
43+
44+
.release-header .release-version {
45+
font-size: 1.2em;
46+
float: right;
47+
vertical-align: middle;
48+
}
49+
50+
h3 {
51+
font-size: 1.2em;
52+
}
53+
54+
.content-wrap {
55+
width: 100%;
56+
max-width: 970px;
57+
margin: 0 auto;
58+
padding: 0 15px;
59+
}
60+
61+
.main {
62+
flex-grow: 1;
63+
display: flex;
64+
flex-direction: column;
65+
}
66+
67+
.navbar {
68+
display: flex;
69+
justify-content: space-between;
70+
height: 57px;
71+
}
72+
73+
.navbar-logo {
74+
height: 46px;
75+
padding: 6px 0;
76+
vertical-align: middle;
77+
}
78+
79+
.navbar-wrap {
80+
display: flex;
81+
justify-content: space-between;
82+
}

0 commit comments

Comments
 (0)