Created
May 5, 2014 12:09
-
-
Save Plaristote/11535004 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// Sass (v3.3.6) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
// Item list display | |
table.ms-listviewtable { | |
img { max-width: 100px; max-height: 100px; } | |
} | |
// Footer placeholder | |
[data-name="ContentPlaceHolderMain"] { | |
margin-bottom: 91px; | |
} | |
// Focus news banque | |
#focus-news-banque { | |
width: 100%; | |
border-radius: 5px; | |
border: #D7D7D7 1px solid; | |
padding: 5px 5px; | |
.news-entry { | |
h1 { cursor: pointer }; | |
.title { color: black; } | |
.subtitle { color: #AC1F4A; font-size: 75%; } | |
padding: 5px 5px; | |
margin: 7px 7px; | |
border: #EBEBEB 1px solid; | |
.news-details { | |
display: none; | |
img { | |
max-width: 350px; | |
margin-right: 10px; | |
margin-bottom: 10px; | |
float: left; | |
} | |
} | |
.read-all { | |
text-align: right; | |
} | |
} | |
.other-news { | |
text-align: center; | |
} | |
} |
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
table.ms-listviewtable img { | |
max-width: 100px; | |
max-height: 100px; | |
} | |
[data-name="ContentPlaceHolderMain"] { | |
margin-bottom: 91px; | |
} | |
#focus-news-banque { | |
width: 100%; | |
border-radius: 5px; | |
border: #D7D7D7 1px solid; | |
padding: 5px 5px; | |
} | |
#focus-news-banque .news-entry { | |
padding: 5px 5px; | |
margin: 7px 7px; | |
border: #EBEBEB 1px solid; | |
} | |
#focus-news-banque .news-entry h1 { | |
cursor: pointer; | |
} | |
#focus-news-banque .news-entry .title { | |
color: black; | |
} | |
#focus-news-banque .news-entry .subtitle { | |
color: #AC1F4A; | |
font-size: 75%; | |
} | |
#focus-news-banque .news-entry .news-details { | |
display: none; | |
} | |
#focus-news-banque .news-entry .news-details img { | |
max-width: 350px; | |
margin-right: 10px; | |
margin-bottom: 10px; | |
float: left; | |
} | |
#focus-news-banque .news-entry .read-all { | |
text-align: right; | |
} | |
#focus-news-banque .other-news { | |
text-align: center; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment