Commit a2d3b51ba12ec86e791075a776b6feb9302fc3dd
1 parent
7e30eceb
Exists in
master
and in
79 other branches
Sitemap and help pages style
Showing
1 changed file
with
79 additions
and
0 deletions
Show diff stats
css/article-page.css
@@ -24,6 +24,10 @@ | @@ -24,6 +24,10 @@ | ||
24 | line-height: 21px; | 24 | line-height: 21px; |
25 | } | 25 | } |
26 | 26 | ||
27 | +#content .main-block .article-body a { | ||
28 | + color: #2c66ce; | ||
29 | +} | ||
30 | + | ||
27 | /* For software internal pages */ | 31 | /* For software internal pages */ |
28 | 32 | ||
29 | #content .main-block .article-body h2 { | 33 | #content .main-block .article-body h2 { |
@@ -90,3 +94,78 @@ | @@ -90,3 +94,78 @@ | ||
90 | } | 94 | } |
91 | 95 | ||
92 | /*** end of categories ***/ | 96 | /*** end of categories ***/ |
97 | + | ||
98 | +/*** Site Map page ***/ | ||
99 | + | ||
100 | +#content .main-block .article-body #sitemap{ | ||
101 | + overflow: auto; | ||
102 | +} | ||
103 | + | ||
104 | +#content .main-block .article-body #sitemap a{ | ||
105 | + text-decoration: initial; | ||
106 | +} | ||
107 | + | ||
108 | +#content .main-block .article-body #sitemap ul{ | ||
109 | + padding-top: 20px; | ||
110 | + font-weight: 700; | ||
111 | +} | ||
112 | + | ||
113 | +#content .main-block .article-body #sitemap li{ | ||
114 | + padding-left: 10px; | ||
115 | + font-weight: 500; | ||
116 | +} | ||
117 | + | ||
118 | +#content .main-block .article-body #sitemap #first-half{ | ||
119 | + float: left; | ||
120 | + width: 40%; | ||
121 | +} | ||
122 | + | ||
123 | +#content .main-block .article-body #sitemap #second-half{ | ||
124 | + float: left; | ||
125 | + padding-top: 50px; | ||
126 | + width: 40%; | ||
127 | +} | ||
128 | + | ||
129 | +/*** end of sitemap page ***/ | ||
130 | + | ||
131 | +/*** Help page ***/ | ||
132 | + | ||
133 | +#content .main-block .article-body ul.help-list li { | ||
134 | + list-style-type: none; | ||
135 | + padding-bottom: 5px; | ||
136 | +} | ||
137 | + | ||
138 | +#content .main-block .article-body ul.help-list li a[href="#faq"]:before { | ||
139 | + content: url('../images/arrow-globe-icon.png'); | ||
140 | + padding-right: 5px; | ||
141 | + vertical-align: middle; | ||
142 | +} | ||
143 | + | ||
144 | +#content .main-block .article-body ul.help-list li a[href="#lista-discussao"]:before { | ||
145 | + content: url('../images/balloon-icon.png'); | ||
146 | + padding-left: 3px; | ||
147 | + padding-right: 6px; | ||
148 | + vertical-align: middle; | ||
149 | +} | ||
150 | + | ||
151 | +#content .main-block .article-body ul.help-list li a { | ||
152 | + color: #2c66ce; | ||
153 | + font-size: 15px; | ||
154 | +} | ||
155 | + | ||
156 | +#content .main-block .article-body ul.help-list { | ||
157 | + padding-top: 21px; | ||
158 | + border-top: 1px solid #D3D6DE; | ||
159 | +} | ||
160 | + | ||
161 | +#content .main-block .article-header h1.help-page-title { | ||
162 | + margin-top: 0px; | ||
163 | + margin-bottom: 30px; | ||
164 | + padding-top: 0px; | ||
165 | + line-height: 30px; | ||
166 | + border-top: none; | ||
167 | + letter-spacing: -0.1px; | ||
168 | + font-size: 26px; | ||
169 | +} | ||
170 | + | ||
171 | +/*** end of help page ***/ |