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 characters
| #301 Redirect one old Url to new Url | |
| Redirect 301 /oldurl.html http://www.domain.de/newurl.php |
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 characters
| <div class="<?php print $classes; ?>"<?php print $attributes; ?>> | |
| <?php if (!$label_hidden) : ?> | |
| <h2 class="field-label"<?php print $title_attributes; ?>><?php print $label ?>: </h2> | |
| <?php endif; ?> | |
| <?php foreach ($items as $delta => $item): ?> | |
| <figure class="field-item <?php print $delta % 2 ? 'odd' : 'even'; ?>"<?php print $item_attributes[$delta]; ?>> | |
| <?php print render($item); ?> | |
| <?php if ($item['#item']['title']): ?> | |
| <figcaption><?php print $item['#item']['title']; ?></figcaption> | |
| <?php endif; ?> |
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 characters
| .content{ | |
| counter-reset:section; | |
| } | |
| ol > li { | |
| font-weight: 400; | |
| list-style: none outside none; | |
| margin: 0 0 10px 20px; | |
| position: relative; | |
| counter-reset:li; |
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 characters
| tbody tr:nth-child(odd) { | |
| background-color: #ccc; | |
| } |
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 characters
| /*Button feels like pressed down*/ | |
| .button:active, input[type=submit]:active{ | |
| position: relative; | |
| top:1px; | |
| } |