Skip to content
Snippets Groups Projects
styles.css 1.71 KiB
Newer Older
Hugo BAYOUD's avatar
Hugo BAYOUD committed
/* You can add global styles to this file, and also import other style files */
Hugo BAYOUD's avatar
Hugo BAYOUD committed
@import '~@angular/material/prebuilt-themes/deeppurple-amber.css';

html, body { 
	height: 100%;
}

body { 
	margin: 0;
	font-family: Roboto, "Helvetica Neue", sans-serif;
	background-color: #f1f1f1;
	text-align: center;
	color: #222222;
}
Hugo BAYOUD's avatar
Hugo BAYOUD committed

.link {
	outline: 0;
	color: blue;
	text-decoration: underline;
	cursor: pointer;
}

/* Flex for center and container */
.flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}


.column-container {
Hugo BAYOUD's avatar
Hugo BAYOUD committed
	flex-flow: column nowrap;
Hugo BAYOUD's avatar
Hugo BAYOUD committed
	padding: 5px;
}

Hugo BAYOUD's avatar
Hugo BAYOUD committed
.row-container {
	display: flex;
	flex-flow: row nowrap;
	padding: 5px;
}

.column-container > *, .row-container > * {
Hugo BAYOUD's avatar
Hugo BAYOUD committed
	margin: 5px;
}

/* BUTTONS */
.primary-button {
	padding: 8px 40px;
	background: #EAE000;
	font-size: large;
	color: #F1F1F1;
	text-transform: uppercase;
	-webkit-text-stroke: 0.2px black;
	font-weight: bold;
	border: 1px solid #222222;
	box-shadow: 0px 2px 0px rgba(34, 34, 34, 0.6), inset 0px 4px 0px #FFF851;
	border-radius: 5px;
}

.secondary-button {
	padding: 8px 40px;
	font-size: small;
	background: #3D00EA;
	color: #F1F1F1;
	text-transform: uppercase;
	-webkit-text-stroke: 0.2px black;
	font-weight: bold;
	border: 1px solid #222222;
	box-shadow: 0px 2px 0px rgba(34, 34, 34, 0.6), inset 0px 4px 0px #7c4dff;
	border-radius: 5px;
}

/* Form card in grey background*/
.form-card {
	border-radius: 5px;
	border: #222222 1px solid;
	background-color: #d2dae2;
}

.card-container {
	display: flex;
	flex-direction: column;
}

.error-display {
	font-size: 0.8em;
	margin-bottom: 3px;
}

/* Custom Text classes */
.small-text {
	font-size: 0.7em;
	font-weight: 300;
}

.welcome-text {
	font-size: 0.8em;
	font-weight: 700;
	color: #f1c40f;
Hugo BAYOUD's avatar
Hugo BAYOUD committed
}