core.css 2.76 KB
Newer Older
1
body {
2 3
  background-color: #f1f1f1;
  font-family: "Varela Round", sans-serif;
4 5
}
.center-block {
6 7 8
  display: block;
  margin-left: auto;
  margin-right: auto;
9
}
10 11 12 13
.btn-link,
.btn-link:hover,
.btn-link:active,
a,
14 15
a:hover,
a:active {
16
  color: #5fa134;
17
}
18

19
pre {
20
  white-space: pre;
21 22 23 24 25
}

/* ---------- */

.nav {
26
  margin-bottom: 0;
27 28
}
.nav > li > a {
29
  color: #838789;
30 31 32 33 34
}
.nav-tabs > .active > a,
.nav-tabs > .active > a:hover,
.nav-tabs > .active > a:focus,
.table > thead > tr > th {
35 36 37
  background-color: #34302D;
  border-color: #34302D;
  color: #f1f1f1;
38 39 40 41 42
}

/* ---------- */

.header--navbar {
43
  margin: 0 0 20px 0;
44 45
}
.header--navbar .navbar-inner {
46 47 48 49 50 51 52 53 54 55 56
  font-family: Montserrat, sans-serif;
  z-index: 999;
  background-image: none;
  filter: none;
  background-color: #34302d;
  border: none;
  border-top: 4px solid #6db33f;
  box-shadow: none;
  position: relative;
  border-radius: 0;
  padding: 0;
57 58
}
.header--navbar .navbar-inner .spring-logo--container {
59
  display: inline-block;
60 61
}
.header--navbar .navbar-inner .spring-logo--container .spring-logo {
62 63 64 65 66
  margin: 12px 0 6px;
  width: 160px;
  height: 46px;
  display: inline-block;
  text-decoration: none;
67 68
}
.header--navbar .navbar-inner .navbar-link.active a {
69 70
  background-color: #6db33f;
  box-shadow: none;
71 72
}
.header--navbar .navbar-inner .navbar-link a {
73 74 75 76
  color: #eeeeee;
  text-transform: uppercase;
  text-shadow: none;
  font-size: 14px;
Johannes Edmeier committed
77 78
  line-height: 70px;
  padding: 0 20px;
79 80 81 82 83
  transition: all 0.15s;
  -webkit-transition: all 0.15s;
  -moz-transition: all 0.15s;
  -o-transition: all 0.15s;
  -ms-transition: all 0.15s;
84 85
}
.header--navbar .navbar-inner .navbar-link:hover a {
86 87
  color: #eeeeee;
  background-color: #6db33f;
88 89
}
.navbar-inner .container-fluid {
90 91
  max-width: 1024px;
  margin: 0 auto;
92 93
}
a.spring-logo {
94
  background: url("../img/spring-logo.png") -1px -1px no-repeat;
95 96
}
.spring-logo span {
97 98 99 100 101 102 103 104
  display: block;
  width: 160px;
  height: 46px;
  background: url("../img/spring-logo.png") -1px -48px no-repeat;
  opacity: 0;
  -moz-transition: opacity 0.12s ease-in-out;
  -webkit-transition: opacity 0.12s ease-in-out;
  -o-transition: opacity 0.12s ease-in-out;
105 106
}
a.spring-logo span {
107 108 109 110 111 112 113 114
  display: block;
  width: 160px;
  height: 46px;
  background: url("../img/spring-logo.png") -1px -48px no-repeat;
  opacity: 0;
  -moz-transition: opacity 0.12s ease-in-out;
  -webkit-transition: opacity 0.12s ease-in-out;
  -o-transition: opacity 0.12s ease-in-out;
115 116
}
a:hover.spring-logo span {
117
  opacity: 1;
118 119
}
a.spring-boot-logo span {
120 121 122 123
  display: block;
  width: 160px;
  height: 50px;
  background: url("../img/platform-spring-boot.png") 20px -6px no-repeat;
124 125
}
a:hover.spring-boot-logo span {
126
  opacity: 1;
127 128 129 130 131
}

/* ---------- */

.footer {
132 133 134
  background-color: #34302d;
  color: #eeeeee;
  padding: 30px 0;
135 136
}
.footer a {
137
  color: #6db33f;
138 139
}
.footer ul {
140
  text-align: center;
141
}