Files
developer.sailpoint.com/archive/conference/SpeakerCard/styles.module.css
2023-04-18 09:17:39 -05:00

49 lines
763 B
CSS

/* Getting Started Card */
.card {
position: relative;
margin-top: 20px;
height: 200px;
/* UI Properties */
background: var(--dev-card-background);
opacity: 1;
}
.cardText {
position: absolute;
margin: 22px auto;
text-align: center;
font-size: 16px;
font-weight: 500;
width: 100%;
top: 116px;
left: 0;
color: var(--dev-text-color-normal);
}
.titleText {
position: absolute;
margin: 22px auto;
text-align: center;
font-size: 10px;
font-weight: 400;
width: 100%;
letter-spacing: 2px;
top: 150px;
left: 0;
color: var(--dev-text-color-normal);
}
.cardFaceContainer {
width: 100%;
margin: 40px auto;
}
.cardFace {
justify-content: center;
display: flex;
margin: auto;
height: 100px;
width: 100px;
}