twister-react/css/main.css

110 lines
1.2 KiB
CSS
Raw Normal View History

2015-04-29 09:02:32 +00:00
body {
overflow-y: scroll;
}
body.modal-open {
overflow-y: scroll;
margin: 0;
}
2015-04-22 08:38:44 +00:00
2016-01-22 20:01:50 +00:00
.btn-group-justified>.btn-group .dropdown-menu {
right: 0;
}
2016-01-12 13:17:40 +00:00
.container {
padding: 0;
}
2015-04-29 09:02:32 +00:00
.modal {
overflow: auto;
}
.link-button-gray {
color: #666;
2016-01-06 12:12:24 +00:00
cursor: pointer;
2015-04-29 09:02:32 +00:00
}
2015-04-22 08:38:44 +00:00
.tight {
2015-04-21 17:38:17 +00:00
padding-right:0.4em;
padding-left:0.4em;
2015-04-09 16:25:44 +00:00
}
2015-04-22 08:38:44 +00:00
.fullytight {
padding-right:0;
padding-left:0;
}
2015-04-29 09:02:32 +00:00
.fullytight_all {
padding:0;
2015-04-09 16:25:44 +00:00
}
2015-04-29 09:02:32 +00:00
.nomargin {
margin-right:0;
margin-left:0;
2015-04-09 16:25:44 +00:00
}
2015-04-29 09:02:32 +00:00
.nomargin-top {
margin-top:0;
2015-04-09 16:25:44 +00:00
}
2015-04-29 09:02:32 +00:00
.text-align-right {
text-align: right;
2015-04-09 16:25:44 +00:00
}
2015-04-29 09:02:32 +00:00
.img-responsive {
width: 100%;
2016-01-12 13:17:40 +00:00
border-radius: 0.25em;
2015-04-09 16:25:44 +00:00
}
2015-04-29 09:02:32 +00:00
.item-enter {
opacity: 0.01;
transition: opacity .5s ease-in;
2015-04-09 16:25:44 +00:00
}
2015-04-29 09:02:32 +00:00
.item-enter.item-enter-active {
opacity: 1;
2015-04-09 16:25:44 +00:00
}
2015-04-29 09:02:32 +00:00
.item-leave {
opacity: 1;
transition: opacity .5s ease-in;
2015-04-22 08:38:44 +00:00
}
2015-04-29 09:02:32 +00:00
.item-leave.item-leave-active {
opacity: 0.01;
}
2016-01-12 13:17:40 +00:00
.post-main{
margin-bottom: 5px;
}
.mention {
color: red;
}
.hashtag {
color: green;
}
.url {
color: blue;
}
.email {
color: coral;
}
2016-01-12 13:17:40 +00:00
.micro-avatar {
height: 1em;
border-radius: 0.25em;
vertical-align: text-top;
margin-left: 0.25em;
margin-right: 0.125em;
2016-01-28 19:08:52 +00:00
}
.ghost {
display: inline-block;
width: 0;
overflow: hidden;
height: 0;
2016-01-12 13:17:40 +00:00
}