-
Notifications
You must be signed in to change notification settings - Fork 206
Expand file tree
/
Copy pathpage-content.scss
More file actions
74 lines (59 loc) · 1.35 KB
/
page-content.scss
File metadata and controls
74 lines (59 loc) · 1.35 KB
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
---
---
@import "custom-variables";
.language-icon {
height: 25px;
}
.project-thumbnail-container {
img {
margin-top: 15px;
padding-left: 15px !important;
padding-right: 15px !important;
}
.caption {
padding-bottom: 0;
}
.btn-primary {
width: 100%;
}
}
.centered-light-heading {
font-size: 16px;
color: #aaa;
text-align: center;
margin: 5px 0 5px !important;
}
.stacked-download-button {
margin-top: 7px;
margin-left: 15px;
margin-right: 15px;
}
.dark-bg {
background-color: #1a1a1a;
}
.colored-section {
padding-bottom: 10.5px;
}
.release-link-container {
display: none;
}
:target.tutorial-panel {
animation: target-tutorial-panel-fade 5s 1;
.panel-heading {
animation: target-tutorial-panel-header-fade 5s 1;
}
}
@keyframes target-tutorial-panel-fade {
0% { border-color: $brand-primary; }
80% { border-color: $brand-primary; }
100% { border-color: $panel-default-border; }
}
@keyframes target-tutorial-panel-header-fade {
0% { border-left-color: $brand-primary; }
80% { border-left-color: $brand-primary; }
100% { border-left-color: $panel-default-border; }
}
table.table-left-header > tbody > tr > th:last-of-type {
border-right-color: lighten($table-border-color, 20%);
border-right-width: 2px;
}