1#tiki-installer {
2	background-color: #48497A;
3
4	/* re-style buttons to be link links */
5	.btn-link {
6		border: none;
7		display: inline;
8		text-align: left;
9		-webkit-appearance: none;
10
11		&:not([disable]):hover {
12			cursor: pointer;
13			text-decoration: underline;
14		}
15	}
16
17	.sidebar {
18		margin: 1.5em 1.5em 0 0;
19		padding-bottom: 2em;
20	}
21
22	.sidebar > img {
23		display: block;
24		margin: auto;
25	}
26
27	.installer-content {
28		background-color: white;
29		min-height: 100vh;
30		padding-top: 5em;
31		padding-bottom: 5em;
32	}
33
34	.floating-links {
35		position: fixed;
36		bottom: 1em;
37		right: 1em;
38	}
39
40	.menus {
41		margin-top: 3rem;
42
43		.menu {
44			color: white;
45			margin-top: 1em;
46		}
47	}
48
49	ol.nav {
50		list-style-type: decimal;
51		list-style-position: outside;
52		margin-left: 2em;
53	}
54
55	.nav {
56		margin-left: 1em;
57		.nav-item {
58			color: white;
59			line-height: 2em;
60
61			.nav-link {
62				color: white;
63				padding: 0;
64				background-color: transparent;
65			}
66
67			&.active {
68				color: white;
69				.nav-link {
70					color: white;
71					font-weight: bold;
72				}
73			}
74		}
75	}
76
77	.install-step8 .enter-tiki {
78		.btn { white-space: normal; }
79	}
80}
81
82@media (max-width: breakpoint-max(sm)) {
83	#tiki-installer {
84		.install-body {
85			margin-left: 0 !important;
86			margin-right: 0;
87		}
88	}
89}
90