cssnitelp39 morita 04 · //** number of columns in the grid. @grid-columns: 12; //** padding...

83

Upload: others

Post on 07-Oct-2020

0 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 2: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;

わたしの理想は ...わたしの

理想は…

Page 3: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 5: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 6: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 7: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 8: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 9: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 10: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 11: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 12: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 13: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 14: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 15: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;

<div class="row"> <div class="col-xs-12 col-sm-6 col-md-4">カラム</div> </div>

Page 16: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;

<div class="row"> <div class="col-sm-9 col-sm-push-3">メイン</div> <div class="col-sm-3 col-sm-pull-9">サブ</div> </div>

Page 17: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;

//** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;

Page 18: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;

//** Number of columns in the grid. @grid-columns: 12;

Page 19: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;

//** Number of columns in the grid. @grid-columns: 16;

Page 20: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 21: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 22: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 23: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;

.form { width: 60%; } .btn { width: 40%; }

Page 24: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;

.parent { display: table; width: 100%; } .form { display: table-cell; width: 100%; } .btn { display: table-cell; width: 1%; white-space: nowrap; }

Page 25: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 26: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;

.parent { display: table; width: 100%; } .form { display: table-cell; width: 100%; } .btn { display: table-cell; width: 1%; }

Page 27: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;

.parent { display: table; width: 100%; } .form { display: table-cell; width: 100%; } .btn { display: table-cell; width: 1%; white-space: nowrap; }

Page 28: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 29: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;

<div class="row"> <div class="hidden-xs">サブ</div> </div>

Page 30: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 31: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;

.parent { position: relative; padding-bottom: 56.25%; display: block; height: 0; padding: 0; overflow: hidden; } iframe { position: absolute; top: 0; bottom: 0; left: 0; width: 100%; height: 100%; border: 0; }

Page 32: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 33: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;

.parent { position: relative; padding-bottom: 56.25%; display: block; height: 0; padding: 0; overflow: hidden; } iframe { position: absolute; top: 0; bottom: 0; left: 0; width: 100%; height: 100%; border: 0; }

Page 34: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;

.parent { position: relative; padding-bottom: 56.25%; display: block; height: 0; padding: 0; overflow: hidden; } iframe { position: absolute; top: 0; bottom: 0; left: 0; width: 100%; height: 100%; border: 0; }

Page 35: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 36: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 37: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 38: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 39: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 40: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 41: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 42: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 43: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;

.btn { display: inline-block; padding: 6px 12px; margin-bottom: 0; font-size: 14px; font-weight: 400; line-height: 1.42857143; text-align: center; white-space: nowrap; vertical-align: middle; -ms-touch-action: manipulation; touch-action: manipulation; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-image: none; border: 1px solid transparent;

Page 44: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 45: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;

<div class="col-md-8"> …

</div>

.main { …

}

….….….….….….….….

….….….….….….….….

….….….….….….….….

….….….….….….….….

….….….….….….….….

Page 46: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 47: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 48: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 49: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 50: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 51: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 52: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 53: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 54: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 55: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 56: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 57: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 58: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 59: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 60: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 61: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 62: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 63: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 64: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 66: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 67: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 68: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 69: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 70: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;

@gutter: 20px; .acms-grid { margin-left: (@gutter / -2); margin-right: (@gutter / -2); } .acms-col-6 { width: 50%; padding-left: (@gutter / 2); padding-right: (@gutter / 2);

}

.acms-grid { margin-left: -10px; margin-right: -10px; } .acms-col-6 { width: 50%; padding-left: 10px; padding-right: 10px;

}

Page 71: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;

@gutter: 20px; .acms-grid { margin-left: (@gutter / -2); margin-right: (@gutter / -2); } .acms-col-6 { width: 50%; padding-left: (@gutter / 2); padding-right: (@gutter / 2);

}

.acms-grid { margin-left: -10px; margin-right: -10px; } .acms-col-6 { width: 50%; padding-left: 10px; padding-right: 10px;

}

Page 72: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;

@import "grid.less"; @import "button.less"; @import "type.less"; @import "code.less"; @import "form.less"; @import "table.less";

@import "thumbnails.less"; @import "navbar.less"; @import "sidebar.less"; @import "label.less";

acms.css

Page 73: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;

@import "grid.less"; @import "button.less"; @import "type.less"; @import "code.less"; @import "form.less"; @import "table.less";

@import "thumbnails.less"; @import "navbar.less"; @import "sidebar.less"; @import "label.less";

acms.css

Page 74: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;

//CSSにはコメントが入りません

.samplepleA { background: #000; } /*CSSにもコメントが入ります*/

.samplepleB { background: #FFF; }

.samplepleA { background: #000; } /*CSSにもコメントが入ります*/

.samplepleB { background: #FFF; }

Page 75: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;

//CSSにはコメントが入りません

.samplepleA { background: #000; } /*CSSにもコメントが入ります*/

.samplepleB { background: #FFF; }

.samplepleA { background: #000; } /*CSSにもコメントが入ります*/

.samplepleB { background: #FFF; }

Page 76: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 77: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;

/* * acms.css Ver.2.0.0 (http://www.a-blogcms.jp) * Copyright a-blog cms | MIT License */ ……

Page 78: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 79: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 80: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 81: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 82: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;
Page 83: cssnitelp39 morita 04 · //** Number of columns in the grid. @grid-columns: 12; //** Padding between columns. Gets divided in half for the left and right. @grid-gutter-width: 30px;