-
Notifications
You must be signed in to change notification settings - Fork 544
Expand file tree
/
Copy pathadditional_styles.css
More file actions
117 lines (108 loc) · 2.41 KB
/
additional_styles.css
File metadata and controls
117 lines (108 loc) · 2.41 KB
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
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
*/
body {
padding-top: 20px;
padding-bottom: 40px;
}
.byline a:not(:last-child):after {
content: ",";
}
/* Custom container */
.container-narrow {
margin: 0 auto;
max-width: 700px;
}
.container-narrow > hr {
margin: 30px 0;
}
/* Main marketing message and sign up button */
.jumbotron {
margin: 60px 0;
text-align: center;
}
.jumbotron h1 {
font-size: 72px;
line-height: 1;
}
.jumbotron .btn {
font-size: 21px;
padding: 14px 24px;
}
/* Supporting marketing content */
.marketing {
margin: 60px 0;
}
.marketing p + h4 {
margin-top: 28px;
}
/* Customize the navbar links to be fill the entire space of the .navbar */
.navbar .navbar-inner {
padding: 0;
}
.navbar .nav {
margin: 0;
display: flex;
flex-wrap: wrap;
width: 100%;
justify-content: center;
}
.navbar .nav li {
flex: 1 1 auto;
min-width: 100px;
float: none;
}
.navbar .nav li a {
font-weight: bold;
text-align: center;
border-left: 1px solid rgba(255, 255, 255, 0.75);
border-right: 1px solid rgba(0, 0, 0, 0.1);
padding: 10px 8px;
display: block;
}
.navbar .nav li:first-child a {
border-left: 0;
border-radius: 3px 0 0 3px;
}
.navbar .nav li:last-child a {
border-right: 0;
border-radius: 0 3px 3px 0;
}
@media (max-width: 768px) {
.navbar .nav li {
flex: 0 1 auto;
min-width: auto;
}
.navbar .nav li a {
font-size: 14px;
padding: 8px 5px;
white-space: nowrap;
}
}
@media (max-width: 480px) {
.navbar .nav {
flex-direction: column;
}
.navbar .nav li {
width: 100%;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.navbar .nav li a {
border-left: 0;
border-right: 0;
border-radius: 0;
}
}