mirror of
https://github.com/wassname/talk.git
synced 2026-06-28 18:45:55 +08:00
70 lines
891 B
CSS
70 lines
891 B
CSS
.title {
|
|
font-size: 1.3em;
|
|
margin: 15px 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.description {
|
|
font-size: 1em;
|
|
line-height: 20px;
|
|
margin: 0;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.list {
|
|
padding: 0;
|
|
margin: 20px 0;
|
|
list-style: none;
|
|
}
|
|
|
|
.item {
|
|
display: flex;
|
|
margin-bottom: 20px;
|
|
|
|
.itemIcon {
|
|
flex-grow: 0;
|
|
}
|
|
|
|
.text {
|
|
flex-grow: 1;
|
|
padding-left: 10px;
|
|
}
|
|
|
|
> i.itemIcon {
|
|
font-size: 1.3em;
|
|
}
|
|
}
|
|
|
|
.button {
|
|
background-color: #3498db;
|
|
border-radius: 2px;
|
|
border: 0;
|
|
color: white;
|
|
display: inline-block;
|
|
font-size: 1em;
|
|
height: 30px;
|
|
text-align: center;
|
|
width: 100%;
|
|
|
|
&:hover {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.cancel {
|
|
background-color: #e0e0e0;
|
|
border-radius: 2px;
|
|
border: 0;
|
|
color: #4f5c67;
|
|
display: inline-block;
|
|
font-size: 1em;
|
|
height: 30px;
|
|
margin-top: 5px;
|
|
text-align: center;
|
|
width: 100%;
|
|
|
|
&:hover {
|
|
cursor: pointer;
|
|
}
|
|
}
|