123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- .waw p {
- font-weight: 300;
- }
- #notizie {
- background-color: #ffffffc9;
- max-height: 600px;
- overflow-y: auto;
- border: 1px solid #212529;
- border-radius: 6px;
- }
- .news {
- padding: 10px;
- }
- .news:not(:last-child) {
- border-bottom: 1px solid #212529;
- }
- .newsBody {
- padding: 5px 40px 5px 0px;
- }
- .news p {
- margin-top: auto;
- margin-bottom: auto;
- }
- .newsTitle {
- cursor: pointer;
- text-transform: uppercase;
- }
- .newsDate {
- display: flex;
- align-items: center;
- }
- .newsTitle:hover {
- text-decoration: underline;
- color: rgba(0, 0, 0, 0.664)
- }
- .waw {
- height: 100%;
- width: 100%;
- box-shadow: 0 0 5px rgba(0,0,0,.05), 2px 2px 5px rgba(0,0,0,.1);
- border-radius: 4px;
- /*justify-content: flex-end; */
- }
-
- /*
- .partnerSite {
- align-self: flex-end;
- }*/
-
- .partnerImg {
- max-width: 100%;
- height: 150px;
- margin-right: auto;
- margin-left: auto;
- padding: 5px;
- }
- .partnerSite button {
- margin-bottom: 20px;
- }
- .background_wrap {
- background-color: #0006;
- position: relative;
- }
- .newsText {
- display: none;
- text-align: justify;
- font-weight: 300;
- }
- .text-block {
- background-color: rgba(0, 0, 0, 0.527);
- color: white;
- padding-left: 20px;
- padding-right: 20px;
- position:absolute;
- bottom:20px;
- width: 100%;
- }
- .all_images {
- height: 100%;
- position: relative;
- overflow: hidden;
- }
- .slide{
- position: absolute; left: 100%; top: 0; height:100%; width:100%;
- animation:30s autoplay infinite ease-in-out
- }
- @keyframes autoplay {
- 0% {left: 100%}
- 4% {left: 0%}
- 33.33% {left: 0%}
- 37.33% {left: -100%}
- 100% {left: -100%}
- }
- #slideset > *:nth-child(1) {animation-delay: 0s}
- #slideset > *:nth-child(2) {animation-delay: 10s}
- #slideset > *:nth-child(3) {animation-delay: 20s}
|