style.css 1.44 KB
nav {
  margin-top: 10px;
}
nav.navbar-default {
  background: #8e44ad;
  color: #ffffff !important;
}
nav .search-box {
  float: right;
  margin-top: 10px;
}
nav a.navbar-brand {
  color: white !important;
}
nav #navbar ul li a {
  color: #fff;
}
nav #navbar ul li.active a {
  color: #8e44ad;
}
.app {
  border: 1px solid #8e44ad;
  border-radius: 6px;
  padding: 20px;
  margin-bottom: 10px;
  background-color: #eee3f3;
}
.app .app-logo {
  border: 1px solid #aaa;
  border-radius: 50px;
}
.app h3 {
  color: #8e44ad;
  margin: 0 0 10px 0;
  font-size: 18px;
}
.app .btn {
  width: 100%;
  margin-top: 20px;
  display: none;
}
@media (max-width: 1024px) {
  .app .btn {
    display: block;
  }
}
.app:hover .btn {
  display: block;
}
.cart {
  background-color: #8e44ad;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
}
.cart ul {
  list-style: none;
  padding-left: 0;
}
.cart ul li {
  display: block;
  padding: 5px 0;
  border-bottom: 1px dashed #000;
}
.cart ul li:first-child {
  border-top: 1px dashed #000;
}
.cart ul li span {
  cursor: pointer;
}
#todo h1 {
  color: #8e44ad;
  font-size: 28px;
  margin: 10px 0 10px;
}
#todo .table thead th {
  color: #8e44ad;
}
#todo .table tbody tr td {
  height: 50px;
  vertical-align: middle;
}
#todo .task .task-item {
  float: left;
}
#todo .task .delete {
  display: none;
  float: right;
  margin: 0;
}
#todo .task:hover .delete {
  display: block;
}
.btn.btn-primary {
  background: #391b45;
  border: 0;
}