1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- // home
- %buttonwithborder {
- text-transform: uppercase;
- padding: 0.3rem;
- border: solid black 1px;
- margin-bottom: 1rem;
- background-color: $white-button;
- font-size: 0.9rem;
- @media (max-width:891px) {
- font-size: 1rem;
- }
-
- }
- %hoveryellow{
- :hover{
- background-color: $yellow-puca;
- }
- }
- .page-programme .field--type-link {
- @extend %buttonwithborder;
- width: fit-content;
- padding: 0.3rem;
- background-color: transparent;
- }
- .field--type-link,
- .next-site,
- .prev-site {
- @extend %buttonwithborder;
- width: fit-content;
- }
- .bouton{
- background-color: $white-button !important;
- border: none !important;
- cursor: pointer;
- }
- .field--type-file{
- @extend %buttonwithborder;
- }
- .links{
- @extend %buttonwithborder;
- }
- .views-field-edit-node{
- @extend %buttonwithborder;
- width: fit-content;
- margin-top: 1rem;
- }
- .views-field-edit-user{
- @extend %buttonwithborder;
- width: fit-content;
- margin-top: 1rem;
- }
- .views-field-edit-user:hover{
- background-color: $yellow-puca;
- }
- #edit-unlock{
- display: none;
- }
- .views-field-edit-node:hover,
- .field--name-field-lien:hover,
- #edit-submit:hover,
- .form-submit:hover,
- .field--type-link:hover,
- .field--type-file:hover{
- background-color: $yellow-puca;
- }
-
|