31 lines
669 B
CSS
31 lines
669 B
CSS
/**
|
|
* @package Joomla.CMS
|
|
* @maintainer Llewellyn van der Merwe <https://git.vdm.dev/Llewellyn>
|
|
*
|
|
* @created 29th July, 2020
|
|
* @copyright (C) 2020 Open Source Matters, Inc. <http://www.joomla.org>
|
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
|
*/
|
|
|
|
/* CSS Document */
|
|
|
|
|
|
.outcome {
|
|
padding: 10px;
|
|
-webkit-border-radius: 5px;
|
|
border-radius: 5px;
|
|
-webkit-box-shadow:inset 0 0 3px 1px #0A0A0A;
|
|
box-shadow:inset 0 0 3px 1px #0A0A0A;
|
|
line-height: 32px;
|
|
color: #fff;
|
|
}
|
|
.outcome-failure {
|
|
background-color: red;
|
|
}
|
|
.outcome-success {
|
|
background-color: green;
|
|
}
|
|
.outcome-undecided {
|
|
background-color: blue;
|
|
}
|