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
.container { | |
position: relative; | |
} | |
.container .ellipsis { | |
display: inline-block; | |
overflow: hidden; | |
text-overflow: ellipsis; | |
white-space: nowrap; | |
width: calc(100% - 5ch); |
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
body, html{ margin: 0;} | |
#contenant { overflow: hidden } | |
.div { float: left; margin-bottom: -100%; padding-bottom: 100%; } | |
.rouge { background: red; width: 34%; } | |
.bleue { background: blue; width: 32%; } | |
.jaune { background: yellow; width: 34%; } | |
#footer{ height: 100px; background: silver; text-align: center; padding: 5px;} |
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
body, html { | |
height: 100%; | |
margin: 0; | |
} | |
.verticale { | |
float: left; | |
width: 25%; | |
height: 100%; | |
} | |
.rouge { background: red; } |
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
#!/bin/bash | |
# Get all Drupal sites | |
sites=`find . -maxdepth 1 -type d -print | grep -v '/all$' | grep -v '/default$' | grep -v '\.$'` | |
echo "Choose the commande to execute : " | |
echo "1. update" | |
echo "2. put sites offline" | |
echo "3. put sites online" | |
echo "4. clear all cache" |