HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/kommabasic.nl/resources/sass/5-Components/_components.data.scss
// Component settings: Data
// ------------------------------------------

$c-data: (
  'color':			palette(neutral, 800),
  'color-alt':		palette(neutral, 500),
  'bgcolor-hover':	scale-color(palette(secondary), $lightness: -20%),
);

// ------------------------------------------

.c-data {
	margin: space(1) 0;
}

.c-data__line {
	display: flex;
}

.c-data__label {
	min-width: space(8);
	font-weight: bold;
	color: map-get($c-data, 'color');
}

.c-data__value {
    color: map-get($c-data, 'color-alt');
	text-decoration: none;

	&[href] {
		@include disableOutlineForMouse;

		&:hover {
			text-decoration: underline;
		}
		&:focus {
			outline-color: currentColor;
			outline-style: solid;
			outline-offset: 1px;
			outline-width: 2px;
		}
	}
}