mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 17:36:38 +02:00

Ignored properties, invalid propertiies, duplicates, invalid selectors.. Detected by stylelint rules: http://stylelint.io/user-guide/rules/declaration-block-no-ignored-properties http://stylelint.io/user-guide/rules/selector-type-no-unknown http://stylelint.io/user-guide/rules/declaration-block-no-duplicate-properties http://stylelint.io/user-guide/rules/max-line-length http://stylelint.io/user-guide/rules/no-browser-hacks
40 lines
540 B
CSS
40 lines
540 B
CSS
/****** List View CSS ******/
|
|
|
|
#pictures {
|
|
width: 750px;
|
|
}
|
|
|
|
.picture {
|
|
padding: 5px;
|
|
border-style: solid;
|
|
border-width: thin;
|
|
border-color: #779;
|
|
background-color: white;
|
|
display: inline-block;
|
|
}
|
|
|
|
.pictureframe {
|
|
padding: 5px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.picturediv {
|
|
display: inline-block;
|
|
max-width: 150px;
|
|
max-height: 200px;
|
|
}
|
|
|
|
.inline {
|
|
display: inline;
|
|
}
|
|
|
|
/***** Single View CSS *****/
|
|
|
|
.caption {
|
|
font-style: italic;
|
|
}
|
|
|
|
#singleimage img {
|
|
width: 700px;
|
|
height: auto;
|
|
}
|