mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
8872d5b6d1
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
55 lines
570 B
CSS
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;
|
|
}
|