Template:Tweet/styles.css
Jump to navigation
Jump to search
/* For the main template body */
.tweet {
width: 50%;
margin: 5px auto;
padding: 12px 16px 4px 16px;
border: 1px solid #c4cfd6; /* Twitter border color */
background: white;
border-radius: 12px;
}
/* For the author name, corresponds to parameter "by" */
.tweet-by, .tweet-by a {
color: black;
font-weight: bold;
}
/* For the @handle, corresponds to parameters "handle" and "date" */
.tweet-handle, .tweet-date {
color: #5b7083; /* Twitter handle and date color */
}
/* For the tweet, corresponds to parameter "text" */
.tweet-text {
/* As of 2014, Twitter uses Gotham as its font. Fall back to sans-serif. */
font-family: Gotham, sans-serif;
font-size: larger;
}
/* For the #hashtag and @mention, corresponds to parsed content of "text" */
.tweet-hashtag, .tweet-hashtag a, .tweet-mention, .tweet-mention a {
color: #1b95e0; /* Twitter hashtag and mention color */
}
/* [[Category:Template stylesheets]] */