urbit/main/app/twit/style.css

123 lines
1.5 KiB
CSS
Raw Normal View History

2014-08-08 11:41:54 +04:00
body,
textarea,
input {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 400;
}
body {
2014-08-09 08:00:44 +04:00
margin-top: 4rem;
font-size: 18px;
2014-08-08 11:41:54 +04:00
}
input,
textarea {
font-size: 1rem;
2014-08-09 08:00:44 +04:00
outline: none;
2014-08-08 11:41:54 +04:00
}
#c {
width: 100%;
height: 100%;
}
#d,
#tweet,
.tweet,
2014-08-09 08:00:44 +04:00
.text,
textarea {
width: 32rem;
2014-08-08 11:41:54 +04:00
}
#d {
margin-left: auto;
margin-right: auto;
}
textarea {
border: 0;
2014-08-09 08:00:44 +04:00
height: 8rem;
2014-08-08 11:41:54 +04:00
line-height: 1.5rem;
margin-bottom: .3rem;
resize: none;
2014-08-09 08:00:44 +04:00
padding: 1rem 1px;
2014-08-08 11:41:54 +04:00
background-color: #f7f7f7;
}
textarea:focus {
background-color: #eee;
}
#length,
#submit {
border: 0;
color: #333;
letter-spacing: 0.01rem;
}
#length {
width 1rem;
height 1rem;
2014-08-09 08:00:44 +04:00
font-size: .6rem;
2014-08-08 11:41:54 +04:00
color: #ccc;
2014-08-09 08:00:44 +04:00
background-color: transparent;
2014-08-08 11:41:54 +04:00
}
#submit {
2014-08-09 08:00:44 +04:00
background-color: transparent;
border: 2px solid #5DE668;
color: #5DE668;
padding: .3rem 1rem;
2014-08-08 11:41:54 +04:00
font-weight: 500;
2014-08-09 08:00:44 +04:00
cursor: pointer;
}
#submit:hover,
#submit:focus {
background-color: #5DE668;
color: #fff;
}
#submit.disabled {
opacity: .6;
2014-08-08 11:41:54 +04:00
}
.text {
word-wrap:break-word;
margin-bottom: .3rem;
2014-08-09 08:00:44 +04:00
line-height: 1.6rem;
}
#twet {
margin-bottom: 3rem;
border-bottom: 2px solid #464646;
padding-bottom: 2rem;
2014-08-08 11:41:54 +04:00
}
#twet,
.tweet {
2014-08-09 08:00:44 +04:00
border-bottom: 1px solid #eee;
}
.tweet {
margin-bottom: 2rem;
padding-bottom: 1rem;
2014-08-08 11:41:54 +04:00
}
2014-08-09 08:00:44 +04:00
.author,
2014-08-08 11:41:54 +04:00
.date {
font-size: .8rem;
color: #ccc;
2014-08-09 08:00:44 +04:00
margin-right: .6rem;
display: inline-block;
margin-bottom: .3rem;
}
.author {
color: #888;
2014-08-08 11:41:54 +04:00
}
2014-08-12 00:13:53 +04:00
.error {
color: #FF5F5F;
letter-spacing: .06rem;
}