core.css 2.73 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
}
a {
11
  color: #5fa134;
12 13 14
}
a:hover,
a:active {
15
  color: #5fa134;
16 17
}
pre {
18
  white-space: pre;
19 20 21 22 23
}

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

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

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

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

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

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