forked from kracekumar/bangalore.python.org.in
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathmain.scss
More file actions
56 lines (53 loc) · 1.34 KB
/
main.scss
File metadata and controls
56 lines (53 loc) · 1.34 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
---
# Add a comment to make this file sass-y.
# Change this file for any custom CSS.
---
/* We need to add display:inline in order to align the '>>' of the 'read more' link */
.post-excerpt p {
display:inline;
}
// Import partials from `sass_dir` (defaults to `_sass`)
@import
"syntax"
;
/* Exclusive Tabs for Home Page */
.exclusive-tabs-header {
display: flex !important;
flex-direction: row !important;
border-bottom: 1px solid rgba(0, 0, 0, .125) !important;
margin-bottom: 27px;
padding: 0;
}
.exclusive-tab-link {
cursor: pointer !important;
opacity: 0.3 !important;
transition: all 0.3s ease;
margin-right: 40px !important;
padding-bottom: 20px !important;
display: inline-block !important;
border-bottom: 1px solid transparent !important;
margin-bottom: -1px !important;
font-weight: 700 !important;
font-size: 1.4rem !important;
color: #292b2c !important;
}
.exclusive-tab-link.is-active {
opacity: 1 !important;
border-bottom: 1px solid rgba(0,0,0,0.44) !important;
}
.exclusive-tab-link:hover {
opacity: 0.7 !important;
text-decoration: none !important;
}
.exclusive-pane:not(.is-visible) {
display: none !important;
}
.exclusive-pane.is-visible {
display: block !important;
}
.exclusive-content-area {
margin-top: 30px;
}
.pagination a {
cursor: pointer;
}