mirror of
https://gitlab.kit.edu/uskyk/typicalc.git
synced 2024-11-10 03:10:44 +00:00
52 lines
769 B
CSS
52 lines
769 B
CSS
#contentLayout {
|
|
width: 1000px !important;
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
height: 525px;
|
|
}
|
|
|
|
#headingLayout {
|
|
width: 100%;
|
|
display: flex;
|
|
position: relative;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
#languageSelect {
|
|
position: absolute;
|
|
right: 0;
|
|
}
|
|
|
|
#accordion {
|
|
width: 100%;
|
|
}
|
|
|
|
#typeButtonCopy {
|
|
min-width: 110px;
|
|
}
|
|
|
|
#closeIcon {
|
|
right: 0;
|
|
position: absolute;
|
|
bottom: 2.1em;
|
|
}
|
|
|
|
.help-field {
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
kbd {
|
|
background-color: #eee;
|
|
border-radius: 3px;
|
|
border: 1px solid #b4b4b4;
|
|
box-shadow: 0 1px 1px rgba(0, 0, 0, .2), 0 2px 0 0 rgba(255, 255, 255, .7) inset;
|
|
color: #333;
|
|
display: inline-block;
|
|
font-size: .85em;
|
|
font-weight: 700;
|
|
line-height: 1;
|
|
padding: 2px 4px;
|
|
white-space: nowrap;
|
|
} |