aboutsummaryrefslogtreecommitdiff
path: root/app/scss/custom.scss
blob: 5aaf146915549ad4d611462cae4bc37b43bdeb0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
@import "components.scss";
@import "packages.scss";
@import "packagegrid.scss";
@import "comments.scss";

h1 {
	font-size: 2em;
	font-weight: bold;
	margin: 0 0 0.5em;
	letter-spacing: .05em
}

h2 {
	font-size: 1.8em;
	font-weight: bold;
	color: white;
	margin: 1.5em 0 1em;
	letter-spacing: .05em;
	padding: 0 0 0.5em 0;
	border-bottom: 1px solid #444;
}

h3 {
	font-size: 1.3em;
	font-weight: bold;
	color: white;
	margin: 1.5em 0 1em;
	letter-spacing: .05em
}

p, .content li {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased !important;
	-moz-font-smoothing: antialiased !important;
	text-rendering: optimizelegibility !important;
	letter-spacing: .03em;
	line-height: 1.6em;
}

pre code {
	display: block;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.03);
	padding: 0.75rem 1.25rem;
	border-radius: 0.25rem;
}

.dropdown-menu {
	margin-top: 0;
}

.dropdown:hover .dropdown-menu {
	display: block;
}

.nav-link > img {
	max-height: 1em;
}

#alerts {
	display: block;
	list-style: none;
	position: fixed;
	bottom: 0;
	left:0;
	right:0;
	margin: 0;
	padding:0;
	z-index: 1000;
}

#alerts li {
	list-style: none;
}

.jumbotron {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;

	.btn-outline-secondary {
		color: rgba(255, 255, 255, 0.8);
		border-color: rgba(0, 0, 0, 0.6);
		background: rgba(0, 0, 0, 0.3);
	}

	.btn-outline-secondary:hover {
		color: #fff;
		border-color: rgba(0, 0, 0, 0.8);
		background: rgba(0, 0, 0, 0.6);
	}

	.text-secondary {
		color: rgba(255, 255, 255, 0.8) !important;
	}
}

.alert .btn {
	text-decoration: none;
}

.card {
	.card-header {
		margin: 0;
		font-size: 100%;
		font-weight: normal;
	}
	.table {
		margin-bottom: 0;
	}
}

.btn-download {
	color: #fff;
	background-color: #00b05c;
	border-color: #00b05c;
}

.btn-download:focus, .btn-download.focus {
	-webkit-box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.5);
	box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.5);
}