| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- // reset & base
- * {
- margin: 0;
- padding: 0;
- }
- div, span, a, img {
- box-sizing: border-box;
- }
- a {
- text-decoration: none;
- }
- a:hover {
- text-decoration: underline;
- }
- strong {
- font-weight: 700;
- }
- em {
- font-style: italic;
- }
- img {
- display: block;
- }
- .wrap {
- width: 1200px;
- margin: 0 auto;
- }
- .clear {
- clear: both;
- }
- .left {
- float: left;
- }
- .right {
- float: right;
- }
- .center {
- margin: 0 auto;
- text-align: center;
- }
- textarea:focus, input:focus, select:focus{
- outline: 0;
- }
- h1, h2, h3, h4, h5, h6 {
- font-family: 'geomanistbook';
- font-weight: normal;
- }
|