mirror of
https://github.com/FairwindsOps/polaris.git
synced 2026-05-16 14:16:54 +00:00
67 lines
867 B
CSS
67 lines
867 B
CSS
body {
|
|
margin: 0;
|
|
font-family: 'Muli', 'Helvetica', 'Arial', sans-serif;
|
|
background: #f5f5f5;
|
|
line-height: 1.3em;
|
|
}
|
|
|
|
.navbar {
|
|
padding-top: 20px;
|
|
}
|
|
.navbar, .main-content {
|
|
width: 960px;
|
|
margin: auto;
|
|
}
|
|
|
|
.navbar .navbar-content {
|
|
padding: 0px 20px;
|
|
}
|
|
|
|
.navbar .navbar-right {
|
|
float: right;
|
|
}
|
|
|
|
.navbar .logo {
|
|
width: 250px;
|
|
}
|
|
|
|
.navbar span.oss-text {
|
|
color: #23103A;
|
|
display: block;
|
|
font-size: 11px;
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
.navbar a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.navbar .ro-logo {
|
|
height: 50px;
|
|
}
|
|
|
|
.card {
|
|
margin: 25px 20px;
|
|
padding: 20px;
|
|
color: #333;
|
|
background-color: #fff;
|
|
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.footer {
|
|
text-align: center;
|
|
padding-top: 10px;
|
|
padding-bottom: 30px;
|
|
}
|
|
|
|
.footer a {
|
|
color: #999;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.footer a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|