1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 17:28:51 +02:00
phorge-phorge/webroot/rsrc/css/phui/phui-text.css
Chad Little 8872d5b6d1 PHUI Text View
Summary: Adds basic colors and text styles for shorthand use.

Test Plan: UIExamples

Reviewers: epriestley, btrahan

Reviewed By: epriestley

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D5751
2013-04-22 14:28:23 -07:00

55 lines
570 B
CSS

/**
* @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 {
color: #E41C2B;
}
.phui-text-orange {
color: #EA921D;
}
.phui-text-yellow {
color: #EABB1D;
}
.phui-text-green {
color: #2FC118
}
.phui-text-blue {
color: #1D5998;
}
.phui-text-indigo {
color: #BD1772;
}
.phui-text-violet {
color: #701A9C;
}
.phui-text-white {
color: #fff;
}
.phui-text-black {
color: #333;
}