odoo/addons/event/static/src/css/event.css

84 lines
1.8 KiB
CSS

.oe_event_date{
border-top-left-radius:3px;
border-top-right-radius:3px;
font-size: 48px;
height: auto;
font-weight: bold;
text-align: center;
margin-bottom:-7px;
color: #FFFFFF;
-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
background-color: #8A89BA;
}
.oe_event_time{
border-bottom-left-radius:3px;
border-bottom-right-radius:3px;
font-size: 12px;
text-align: center;
font-weight: bold;
color: #8A89BA;
-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
background-color: #FFFFFF;
}
.oe_event_month_year{
border-bottom-left-radius:3px;
border-bottom-right-radius:3px;
font-size: 12px;
text-align: center;
font-weight: bold;
color: #FFFFFF;
background-color: #8A89BA;
}
div.oe_fold_column{
padding:0px !important;
}
.oe_event_button_subscribe{
display: block;
border: 1px solid #404040;
color: #404040;
font-size: 10px;
text-align: center;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
-o-border-radius: 3px;
-ms-border-radius: 3px;
border-radius: 3px;
}
.oe_event_button_unsubscribe{
display: block;
border: 1px solid #404040;
color: #FFFFFF;
background-color:#DC5F59;
font-size: 10px;
text-align: center;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
-o-border-radius: 3px;
-ms-border-radius: 3px;
border-radius: 3px;
}
.oe_event_button_subscribe:hover {
cursor: pointer;
background-color: #DC5F59;
}
.oe_event_button_unsubscribe:hover {
cursor: pointer;
background-color: #404040;
}
.subscribe, .subscribe_button:hover span {
display: none;
background-color: #DC5F59;
}
.subscribe_button:hover .subscribe {
display: inline;
background-color: #DC5F59;
}
.unsubscribe, .unsubscribe_button:hover span {
display: none;
}
.unsubscribe_button:hover .unsubscribe {
display: inline;
background-color: #404040;
}