twister-react/css/main.css

83 lines
813 B
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
2015-04-29 09:02:32 +00:00
.modal {
overflow: auto;
}
.link-button-gray {
color: #666;
}
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%;
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;
}
.mention {
color: red;
}
.hashtag {
color: green;
}
.url {
color: blue;
}
.email {
color: coral;
}