2013-04-22 23:28:23 +02:00
|
|
|
/**
|
|
|
|
* @provides phui-text-css
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/* Styles */
|
|
|
|
.phui-text-bold {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-text-uppercase {
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-text-strike {
|
|
|
|
text-decoration: line-through;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Colors */
|
|
|
|
.phui-text-red {
|
2013-06-20 05:25:41 +02:00
|
|
|
color: {$red};
|
2013-04-22 23:28:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.phui-text-orange {
|
2013-06-20 05:25:41 +02:00
|
|
|
color: {$orange};
|
2013-04-22 23:28:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.phui-text-yellow {
|
2013-06-20 05:25:41 +02:00
|
|
|
color: {$yellow};
|
2013-04-22 23:28:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.phui-text-green {
|
2013-06-20 05:25:41 +02:00
|
|
|
color: {$green}
|
2013-04-22 23:28:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.phui-text-blue {
|
2013-06-20 05:25:41 +02:00
|
|
|
color: {$blue};
|
2013-04-22 23:28:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.phui-text-indigo {
|
2013-06-20 05:25:41 +02:00
|
|
|
color: {$indigo};
|
2013-04-22 23:28:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.phui-text-violet {
|
2013-06-20 05:25:41 +02:00
|
|
|
color: {$violet};
|
2013-04-22 23:28:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.phui-text-white {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.phui-text-black {
|
|
|
|
color: #333;
|
|
|
|
}
|