admin-setup.css 3.34 KB
Newer Older
cyrille's avatar
cyrille committed
1
#wpadminbar, #adminmenumain, #wpfooter {
Cyrille's avatar
Cyrille committed
2 3
  display: none;
}
cyrille's avatar
cyrille committed
4 5 6 7 8 9 10 11

#llms-setup-wizard {
  background-color: #f1f1f1;
  height: 100%;
  left: 0;
  overflow: scroll;
  position: fixed;
  top: 0;
Cyrille's avatar
Cyrille committed
12 13
  width: 100%;
}
cyrille's avatar
cyrille committed
14 15 16

.llms-setup-wrapper {
  margin: 20px auto;
Cyrille's avatar
Cyrille committed
17 18
  max-width: 640px;
}
cyrille's avatar
cyrille committed
19 20

#llms-logo {
Cyrille's avatar
Cyrille committed
21 22 23 24 25
  text-align: center;
}
#llms-logo img {
  max-width: 200px;
}
cyrille's avatar
cyrille committed
26 27 28 29 30

.llms-setup-content {
  background-color: #fff;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.13);
Cyrille's avatar
Cyrille committed
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
  padding: 15px 30px;
}
.llms-setup-content h1, .llms-setup-content h2, .llms-setup-content h3, .llms-setup-content h4, .llms-setup-content h5, .llms-setup-content h6 {
  color: #444;
}
.llms-setup-content a:not(.llms-button-primary):not(.llms-button-secondary) {
  color: #2295ff;
}
.llms-setup-content p, .llms-setup-content li {
  color: #666;
  font-size: 16px;
}
.llms-setup-content p.error {
  color: #e5554e;
  text-align: center;
}
.llms-setup-content label {
  font-weight: 500;
}
.llms-setup-content .llms-setup-actions {
  margin-top: 40px;
  text-align: right;
}
.llms-setup-content .llms-exit-setup {
  color: inherit !important;
  margin-right: 10px;
}
.llms-setup-content table {
  border-bottom: 1px solid #f1f1f1;
  border-collapse: collapse;
  width: 100%;
}
.llms-setup-content td {
  border-top: 1px solid #f1f1f1;
}
.llms-setup-content td:first-child {
  padding-right: 10px;
  width: 33%;
}
.llms-setup-content td:first-child a {
  font-size: 16px;
  font-weight: 500;
}
.llms-setup-content ul.llms-importable-courses {
  display: block;
}
.llms-setup-content ul.llms-importable-courses li.llms-importable-course {
  border-bottom: 1px solid #f1f1f1;
  display: block;
  max-width: 100%;
  padding-bottom: 15px;
}
.llms-setup-content ul.llms-importable-courses li.llms-importable-course img {
  float: left;
  margin-right: 15px;
  width: 20%;
}
.llms-setup-content ul.llms-importable-courses li.llms-importable-course .llms-switch {
  float: right;
}
.llms-setup-content ul.llms-importable-courses li.llms-importable-course .llms-switch input.llms-toggle-round:checked + label {
  border-color: #2295ff;
  background-color: #2295ff;
}
.llms-setup-content .llms-importing-msgs a {
  color: #2295ff;
}
.llms-setup-content .llms-importing-msgs .llms-importing-msg {
  display: none;
  font-size: 14px;
  font-style: italic;
  text-align: right;
}
cyrille's avatar
cyrille committed
104 105 106 107 108

.llms-setup-progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
Cyrille's avatar
Cyrille committed
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
  margin: 20px 0;
}
.llms-setup-progress li {
  border-bottom: 4px solid #2295ff;
  display: inline-block;
  font-size: 14px;
  padding-bottom: 10px;
  position: relative;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.llms-setup-progress li a {
  color: #2295ff;
  text-decoration: none;
}
.llms-setup-progress li:after {
  background: #2295ff;
  bottom: 0;
  content: "";
  border: 4px solid #2295ff;
  border-radius: 100%;
  height: 4px;
  position: absolute;
  left: 50%;
  margin-left: -6px;
  margin-bottom: -8px;
  width: 4px;
}
.llms-setup-progress li.current {
  font-weight: 700;
}
.llms-setup-progress li.current:after {
  background: #fff;
}
.llms-setup-progress li.current ~ li {
  border-bottom-color: #ccc;
}
.llms-setup-progress li.current ~ li:after {
  background: #ccc;
  border-color: #ccc;
}
.llms-setup-progress li.current ~ li a {
  color: #bbb;
}
cyrille's avatar
cyrille committed
155
/*# sourceMappingURL=../maps/css/admin-setup.css.map */