moorepants / icsc2017.ucdavis.edu

Conference webpage
1 stars 0 forks source link

Make the title more readable over the bike lane image on the main page #5

Closed moorepants closed 7 years ago

moorepants commented 7 years ago

This can be added to the styles.css for improvement:

section.site-slider h1 {
    text-shadow: 3px 3px 4px #fff;
}
section.site-slider h3 {
    text-shadow: 2px 2px 3px #000;
    font-weight: bold !important;
}
section.site-slider p {
    text-shadow: 2px 2px 1px #fff;
}

Also in layout.css in the vertoh theme disable line 1049:

section.fullwidth.site-slider .slider-content h3 {
    font-size: 26px;
    /* font-weight: normal !important; */
    margin-bottom: 3px;
}
moorepants commented 7 years ago

With white for all the text colors, darkened background image, and this css:

section.site-slider h1 {
    text-shadow: 3px 3px 4px #000;
}
section.site-slider h3 {
    text-shadow: 2px 2px 3px #000;
    font-weight: bold !important;
}
section.site-slider p {
    text-shadow: 1px 1px 1px #000;
    font-weight: bold !important;
}

I get: selection_081

moorepants commented 7 years ago

I think this is good enough for now. Can update if there are more comments.