Making WordPress.org

Ticket #4870: _helphub.scss

File _helphub.scss, 1.2 KB (added by audrasjb, 5 years ago)

Patch directly made on the file, since HelpHub repo is not synchronized.

Line 
1.three-up {
2
3        &.helphub-front-page {
4
5                p,
6                ul {
7                        text-align: left;
8                }
9
10                > div {
11
12                        margin-bottom: 5rem;
13                }
14
15                .icon-wrapper {
16
17                        a {
18
19                                color: inherit;
20                                text-decoration: none;
21                        }
22                }
23        }
24}
25
26#helphub-forum-link {
27
28        margin-top: 5rem;
29
30        span {
31                display: inline-block;
32                width: 100%;
33                max-width: 335px;
34        }
35
36        a {
37
38                margin-top: 0.5rem;
39                display: inline-block;
40        }
41}
42
43body.helphub-with-sidebar {
44
45        .left-sidebar {
46
47                font-size: 0.9rem;
48
49                h2 {
50                        font-size: 1.1rem;
51                        font-weight: 600;
52                        color: $color__text-main;
53                }
54
55                ul {
56                        list-style: none;
57                        margin: 0;
58
59                        li {
60                                margin-bottom: 0.8rem;
61
62                                ul {
63                                        margin-left: 1rem;
64                                }
65                        }
66                }
67
68                @include breakpoint( $sm ) {
69                        float: left;
70                        padding-right: 3rem;
71                        width: $size__site-sidebar;
72
73                        & + #main-content {
74                                float: right;
75                                width: ( 100 - $size__site-sidebar );
76
77                                .entry-content .container {
78                                        width: 100%;
79                                }
80                        }
81                }
82        }
83}
84
85.helphub-page {
86        .entry-header {
87                .entry-title {
88                        @media screen and ( min-width: $ms-breakpoint ) {
89                                margin: 0;
90                                width: 65%;
91                        }
92                }
93        }
94
95        .entry-content {
96                section {
97                        .container {
98                                 @media screen and ( min-width: $ms-breakpoint ) {
99                                         margin: 0;
100                                         width: 65%;
101                                 }
102                         }
103                 }
104         }
105}
106