-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathalt.css
122 lines (103 loc) · 1.74 KB
/
alt.css
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
a,body,div,footer,h1,h2,header,img,p,section{
font:inherit;
}
body{
color:#24292e;
font-family:Helvetica,Arial,sans-serif;
line-height:1.5;
word-wrap:break-word;
display:flex;
flex-direction:column;
}
.navPusher{
display:flex;
flex-direction:column;
min-height:calc(100vh - 50px);
padding-top:50px;
}
*{
box-sizing:border-box;
}
a,a:hover{
color:#43b02a;
text-decoration:none;
}
a:active,a:hover{
outline-width:0;
}
p{
margin-bottom:1em;
margin-top:0;
}
h1,h2{
font-weight:600;
margin-bottom:16px;
margin-top:1.5em;
}
img{
box-sizing:content-box;
max-width:100%;
}
body{
min-height:100vh;
text-rendering:optimizeLegibility;
}
.wrapper{
margin:0 auto;
max-width:1100px;
}
.projectTitle{
color:#43b02a;
font-size:250%;
line-height:1em;
}
.fixedHeaderContainer{
background:#43b02a;
color:#fff;
min-height:50px;
padding:8px 0;
position:fixed;
width:100%;
z-index:9999;
}
.fixedHeaderContainer a{
align-items:center;
color:#fff;
display:flex;
flex-flow:row nowrap;
height:34px;
z-index:10000;
}
.fixedHeaderContainer header{
display:flex;
flex-flow:row nowrap;
position:relative;
text-align:left;
}
.fixedHeaderContainer header img{
height:100%;
margin-right:10px;
}
.fixedHeaderContainer header .headerTitleWithLogo{
line-height:18px;
margin:0;
position:relative;
z-index:9999;
}
.navPusher{
left:0;
position:relative;
z-index:99;
}
.nav-footer{
background:#4d555a;
font-weight:400;
color:white;
line-height:24px;
padding-bottom:2em;
padding-top:2em;
text-align:center;
position:fixed;
bottom:0;
width:100%
}