mirror of
https://github.com/twisterarmy/twister-react.git
synced 2025-01-25 22:24:26 +00:00
83 lines
813 B
CSS
Executable File
83 lines
813 B
CSS
Executable File
body {
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
body.modal-open {
|
|
overflow-y: scroll;
|
|
margin: 0;
|
|
}
|
|
|
|
.modal {
|
|
overflow: auto;
|
|
}
|
|
|
|
.link-button-gray {
|
|
color: #666;
|
|
}
|
|
|
|
.tight {
|
|
padding-right:0.4em;
|
|
padding-left:0.4em;
|
|
}
|
|
|
|
.fullytight {
|
|
padding-right:0;
|
|
padding-left:0;
|
|
}
|
|
|
|
.fullytight_all {
|
|
padding:0;
|
|
}
|
|
|
|
.nomargin {
|
|
margin-right:0;
|
|
margin-left:0;
|
|
}
|
|
|
|
.nomargin-top {
|
|
margin-top:0;
|
|
}
|
|
|
|
.text-align-right {
|
|
text-align: right;
|
|
}
|
|
|
|
.img-responsive {
|
|
width: 100%;
|
|
}
|
|
|
|
.item-enter {
|
|
opacity: 0.01;
|
|
transition: opacity .5s ease-in;
|
|
}
|
|
|
|
.item-enter.item-enter-active {
|
|
opacity: 1;
|
|
}
|
|
|
|
.item-leave {
|
|
opacity: 1;
|
|
transition: opacity .5s ease-in;
|
|
}
|
|
|
|
.item-leave.item-leave-active {
|
|
opacity: 0.01;
|
|
}
|
|
|
|
.mention {
|
|
color: red;
|
|
}
|
|
|
|
.hashtag {
|
|
color: green;
|
|
}
|
|
|
|
.url {
|
|
color: blue;
|
|
}
|
|
|
|
.email {
|
|
color: coral;
|
|
}
|
|
|