Last active
August 29, 2015 14:06
-
-
Save skammer/2f4d81d08f3669e93d92 to your computer and use it in GitHub Desktop.
Revisions
-
skammer revised this gist
Sep 11, 2014 . 1 changed file with 4 additions and 8 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -16,15 +16,11 @@ html, body { -ms-flex-direction: column; flex-direction: column; } #calendar { min-height: 140px } #options { min-height: 65px } -
skammer revised this gist
Sep 11, 2014 . 1 changed file with 17 additions and 7 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,20 +1,30 @@ html, body { height: 100%; } #sidebar { position: relative; float: left; height: 100%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; } #calendar { -webkit-flex-basis: 230px; -ms-flex-preferred-size: 230px; flex-basis: 230px; } #options { -webkit-flex-basis: 120px; -ms-flex-preferred-size: 120px; flex-basis: 120px; } -
skammer revised this gist
Sep 10, 2014 . 1 changed file with 3 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,4 @@ html, body { height: 100%; } @@ -11,9 +12,9 @@ html, body { } #calendar { min-height: 140px } #options { min-height: 65px } -
skammer revised this gist
Sep 10, 2014 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -11,9 +11,9 @@ html, body { } #calendar { flex-basis: 230px; } #options { flex-basis: 120px; } -
skammer revised this gist
Sep 10, 2014 . 1 changed file with 6 additions and 15 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -2,27 +2,18 @@ html, body { height: 100%; } #sidebar { position: relative; float: left; height: 100%; display: flex; flex-direction: column; } #calendar { flex-basis: 155px; } #options { flex-basis: 90px; } -
skammer revised this gist
Sep 10, 2014 . 1 changed file with 20 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,7 +3,26 @@ html, body { } #channels { position: relative; float: left; overflow-y: scroll; overflow-x: hidden; } #calendar, #options { background-color: #FAFAFA; position: fixed; width: 145px; } #calendar { top: 0; } #options { top: 153px; } #channels ul { padding-top: 245px; } -
skammer created this gist
Sep 10, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ html, body { height: 100%; } #channels { position: static; float: left; overflow-y: scroll; }