Skip to content

Commit c8d7c3f

Browse files
committed
CSS tweaks: word-break, responsive lists
+ fix long strings breaking out of the containers + tweak lists to use available space in (xs,sm)… “extra-small and small devices”
1 parent 6b3cda1 commit c8d7c3f

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

css/codeception.css

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
}
44
body {
55
background: #ecf0f1; /** url("/images/bg.png") transparent !important; */
6+
word-wrap: break-word; // IE
7+
overflow-wrap: break-word; // CSS3
68
}
79
body .navbar.nav-custom {
810
background: #042943;
@@ -283,18 +285,21 @@ ul.navbar-nav {
283285
.row.home-btns{
284286
margin-bottom:0px;
285287
}
288+
289+
ul {
290+
padding-left: 20px;
291+
}
286292
}
287293

288294
@media screen and (max-width : 767px) {
289-
295+
290296
.menu li {
291297
clear: both;
292298
}
293299

294300
body #home-hero h1{
295301
padding-top:0px;
296302
}
297-
298303
}
299304

300305
@media screen and (min-width: 1030px) {

0 commit comments

Comments
 (0)