mirror of
https://github.com/aquatix/digimarks.git
synced 2025-12-07 00:15:10 +01:00
Indentation and styling fixes, comments
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
/**
|
||||||
|
* digimarks styling
|
||||||
|
*/
|
||||||
|
|
||||||
|
/** Navigation **/
|
||||||
|
|
||||||
nav .button-collapse
|
nav .button-collapse
|
||||||
{
|
{
|
||||||
@@ -11,79 +16,88 @@ nav .button-collapse i
|
|||||||
font-size: 2.7rem;
|
font-size: 2.7rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* label color */
|
/** Form input fields **/
|
||||||
.input-field label {
|
|
||||||
color: #000;
|
|
||||||
}
|
|
||||||
/* label focus color */
|
|
||||||
.input-field input[type=text]:focus + label {
|
|
||||||
color: #000;
|
|
||||||
}
|
|
||||||
/* label underline focus color */
|
|
||||||
.input-field input[type=text]:focus {
|
|
||||||
border-bottom: 1px solid #000;
|
|
||||||
box-shadow: 0 1px 0 0 #000;
|
|
||||||
}
|
|
||||||
/* valid color */
|
|
||||||
.input-field input[type=text].valid {
|
|
||||||
border-bottom: 1px solid #000;
|
|
||||||
box-shadow: 0 1px 0 0 #000;
|
|
||||||
}
|
|
||||||
/* invalid color */
|
|
||||||
.input-field input[type=text].invalid {
|
|
||||||
border-bottom: 1px solid #000;
|
|
||||||
box-shadow: 0 1px 0 0 #000;
|
|
||||||
}
|
|
||||||
/* icon prefix focus color */
|
|
||||||
.input-field .prefix.active {
|
|
||||||
color: #000;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
/* label color */
|
||||||
|
.input-field label
|
||||||
|
{
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
/* label focus color */
|
||||||
|
.input-field input[type=text]:focus + label
|
||||||
|
{
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
/* label underline focus color */
|
||||||
|
.input-field input[type=text]:focus
|
||||||
|
{
|
||||||
|
border-bottom: 1px solid #000;
|
||||||
|
box-shadow: 0 1px 0 0 #000;
|
||||||
|
}
|
||||||
|
/* valid color */
|
||||||
|
.input-field input[type=text].valid
|
||||||
|
{
|
||||||
|
border-bottom: 1px solid #000;
|
||||||
|
box-shadow: 0 1px 0 0 #000;
|
||||||
|
}
|
||||||
|
/* invalid color */
|
||||||
|
.input-field input[type=text].invalid
|
||||||
|
{
|
||||||
|
border-bottom: 1px solid #000;
|
||||||
|
box-shadow: 0 1px 0 0 #000;
|
||||||
|
}
|
||||||
|
/* icon prefix focus color */
|
||||||
|
.input-field .prefix.active
|
||||||
|
{
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
|
||||||
/* Card title anchor colour */
|
/** Cards and tags **/
|
||||||
.white-text .card-title a,
|
|
||||||
.white-text a
|
/* Card title anchor colour */
|
||||||
{
|
.white-text .card-title a,
|
||||||
|
.white-text a
|
||||||
|
{
|
||||||
color: #FFF;
|
color: #FFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chip a,
|
.chip a,
|
||||||
.white-text .chip a
|
.white-text .chip a
|
||||||
{
|
{
|
||||||
color: #1b5e20; /* green darken-4 */
|
color: #1b5e20; /* green darken-4 */
|
||||||
}
|
}
|
||||||
|
|
||||||
.card.tiny
|
.card.tiny
|
||||||
{
|
{
|
||||||
height: 140px;
|
height: 140px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card.tiny .card-title
|
.card.tiny .card-title
|
||||||
{
|
{
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card .card-reveal .digimark-card-header,
|
.card .card-reveal .digimark-card-header,
|
||||||
.card .digimark-card-header.activator,
|
.card .digimark-card-header.activator,
|
||||||
.chip.clickable
|
.chip.clickable
|
||||||
{
|
{
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
/*display: block;*/
|
/*display: block;*/
|
||||||
}
|
}
|
||||||
|
|
||||||
.card .digimark-card-content
|
.card .digimark-card-content
|
||||||
{
|
{
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card-image i
|
.card-image i
|
||||||
{
|
{
|
||||||
padding: 5px 0 0 15px;
|
padding: 5px 0 0 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card.horizontal .card-image img.favicon
|
.card.horizontal .card-image img.favicon
|
||||||
{
|
{
|
||||||
height: 60px;
|
height: 60px;
|
||||||
width: 60px;
|
width: 60px;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user