File tree 11 files changed +19
-37
lines changed
11 files changed +19
-37
lines changed Original file line number Diff line number Diff line change 1
1
node_modules /
2
- build /
2
+ build /
3
+ dist /css /style.min.css
4
+ dist /css /bootstrap.min.css
Original file line number Diff line number Diff line change 1
- <footer >
1
+ <footer class = " bg-light-grey " >
2
2
<div class =" container upper" >
3
- <div class =" row" >
3
+ <div class =" row py-5 " >
4
4
<div id =" FooterPaneOne" class =" col-md-4" runat =" server" ></div >
5
5
<div id =" FooterPaneTwo" class =" col-md-4" runat =" server" ></div >
6
6
<div id =" FooterPaneThree" class =" col-md-4" runat =" server" ></div >
Original file line number Diff line number Diff line change 1
- <header >
2
- <div class =" container-fluid user-controls" >
1
+ <header class = " bg-light-grey " >
2
+ <div class =" container-fluid user-controls bg-tertiary " >
3
3
<div class =" container" >
4
4
<div class =" row justify-content-end" >
5
5
<ul >
Original file line number Diff line number Diff line change @@ -19,10 +19,7 @@ body {
19
19
-webkit-font-smoothing : antialiased ;
20
20
}
21
21
22
- h1 , h2 , h3 , {
23
- font-family : $open-sans ;
24
- }
25
- h4 , h5 {
22
+ h1 , h2 , h3 , h4 , h5 {
26
23
font-family : $open-sans ;
27
24
}
28
25
Original file line number Diff line number Diff line change 1
1
@import ' dnn' ;
2
2
@import ' buttons' ;
3
3
@import ' fonts' ;
4
- @import ' forms' ;
5
4
@import ' grid' ;
6
5
@import ' helpers' ;
7
6
@import ' nav' ;
Original file line number Diff line number Diff line change @@ -3304,9 +3304,8 @@ div.actionMenu .dnn_mact {
3304
3304
3305
3305
/* On Page Editor */
3306
3306
.eipbackimg {
3307
- margin-top :-41px !important ;
3308
- margin-left :-9px !important ;
3309
3307
height :30px !important ;
3308
+ z-index :1250 ;
3310
3309
3311
3310
& .editMode {
3312
3311
border :none !important ;
Original file line number Diff line number Diff line change 2
2
@return $num / ($num * 0 + 1 );
3
3
}
4
4
5
- // REM Font-size with PX falleback
6
- // usage
7
- // @include font-size(13);
8
- // Output: font-size: 13px;
9
- // font-size: 1.3rem;
5
+ // rem font-size with px fallback
6
+ // usage: @include font-size(16)
10
7
@mixin font-size ($sizeValue ) {
11
8
font-size : $sizeValue + px;
12
9
font-size : ($sizeValue / 16 ) + rem;
13
10
}
14
11
15
- // Vertical rhythm
16
- // @include font-baseline(16,24);
12
+ // vertical rhythm
13
+ // usage: @include font-baseline(16,24);
17
14
@mixin font-baseline ($font-size , $lineheight ){
18
15
font-size : $font-size + px;
19
16
font-size : ($font-size / $base-font-size ) + rem;
20
17
line-height : ( $lineheight / $font-size / 1 );
21
- margin : 0 0 ( ($lineheight / $font-size * ( 1 / ( $lineheight / $defaultlineheight ))) * .5em ) 0 ;
18
+ margin : 0 0 ( ($lineheight / $font-size * ( 1 / ( $lineheight / $defaultlineheight ))) * .5em ) 0 ;
22
19
}
23
20
24
21
@mixin background-cover (){
Original file line number Diff line number Diff line change
1
+ main div .container , main div .container-fluid {
2
+ margin-bottom : 4rem ;
3
+ }
Original file line number Diff line number Diff line change 1
1
footer {
2
- background-color :$light-grey ;
3
2
4
3
.upper {
5
4
margin-bottom :0 ;
6
- padding-top :$ygutter ;
7
- padding-bottom :$ygutter ;
5
+
8
6
}
9
7
a {
10
8
font-weight :400 ;
11
9
}
12
10
13
11
.disclaimer {
14
- font-size : 12 px ;
12
+ @include font-size ( 12 ) ;
15
13
padding-top :1rem ;
16
14
padding-bottom :1rem ;
17
15
margin-bottom :0 ;
Original file line number Diff line number Diff line change 1
- header {
2
- background-color :$light-grey ;
3
-
4
- .user-controls {
5
- background-color :$tertiary-color ;
6
- }
7
- }
8
-
9
- @include mq-max-width (576 ) {
10
- a #dnn_dnnLOGO_hypLogo {
11
- padding-left :0 ;
12
- }
13
- }
You can’t perform that action at this time.
0 commit comments