Skip to content

Instantly share code, notes, and snippets.

Created March 31, 2015 04:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/3b373ccfb3226fa0c912 to your computer and use it in GitHub Desktop.
Save anonymous/3b373ccfb3226fa0c912 to your computer and use it in GitHub Desktop.
/** Change the size and colour of the widget title */
.tribe-events-list-widget h2.widget-title {
color: blue;
font-size: 30px;
}
/** Make each event standout with a new background and border */
.tribe-events-list-widget li.tribe-events-list-widget-events {
background: yellow;
border: 1px solid red;
padding: 10px;
}
/** Make each event title uppercase and underline them */
.tribe-events-list-widget h4.entry-title a {
text-decoration: underline;
text-transform: uppercase;
}
/** Make the event date/time information a little more prominent */
.tribe-events-list-widget div.duration {
color: green;
font-weight: bold;
transform: rotate( -4deg );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment