mirror of
https://github.com/wassname/talk.git
synced 2026-07-23 13:10:20 +08:00
56 lines
749 B
CSS
56 lines
749 B
CSS
.container {
|
|
padding: 10px;
|
|
display: flex;
|
|
}
|
|
|
|
.leftColumn {
|
|
width: 300px;
|
|
}
|
|
|
|
.mainContent {
|
|
width: calc(70% - 300px)
|
|
}
|
|
|
|
.settingOption {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.configSetting {
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
height: 90px;
|
|
margin-bottom: 10px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.configSettingEmbed {
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
margin-bottom: 10px;
|
|
display: block;
|
|
}
|
|
|
|
.copiedText {
|
|
color: #008000;
|
|
float: right;
|
|
padding: 12px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.copyButton {
|
|
float: right;
|
|
}
|
|
|
|
.embedInput {
|
|
border-radius: 3px;
|
|
border: 1px solid #ccc;
|
|
display: block;
|
|
width: 90%;
|
|
vertical-align: middle;
|
|
margin-bottom: 10px;
|
|
color: #555;
|
|
padding: 14px;
|
|
font-size: 14px;
|
|
letter-spacing: 0.03em;
|
|
}
|