1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00
Files
archived-web-php/styles/add-note.css
Peter Kokot e235f79473 Trim trailing whitespace
This patch cleans all redundant trailing whitespace across the
repository except for the icalendar files.
2018-10-17 10:51:08 +02:00

58 lines
1.2 KiB
CSS

#add-note-usernotes {
overflow: hidden;
position: relative;
}
#add-note-usernotes .shadow {
box-shadow: inset -10px 0 5px -5px rgba(0, 0, 0, 0.1);
width:3%;
height: 100%;
position:absolute;
float:right;
z-index:1;
left: 97%;
}
#layout-content li {
margin-bottom:1.5rem;
}
#whatnottoenter li strong{
display:block;
}
@media (min-width:768px) {
#email_and_formatting > section,
#add-note-usernotes .note_description,
#add-note-usernotes .note_example {
-moz-box-sizing:border-box;
box-sizing:border-box;
float:left;
}
#add-note-usernotes .note_description {
width:33.333333%;
}
#add-note-usernotes .note_example {
padding-left: 1.5rem;
width:66.666666%;
}
#email_and_formatting > section {
width:50%;
}
#email_and_formatting > section:first-child {
padding-right:1.5rem;
}
#email_and_formatting > section:last-child {
padding-left:1.5rem;
}
#whatnottoenter .columns {
-webkit-columns:15rem;
-moz-columns:15rem;
columns:15rem;
}
#whatnottoenter .columns li {
-webkit-column-break-inside:avoid;
-moz-column-break-inside:avoid;
-o-column-break-inside:avoid;
break-inside:avoid;
}
}