123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- // home
- %buttonwithborder {
- text-transform: uppercase;
- padding: 1rem;
- border: solid black 1px;
- margin-bottom: 1rem;
- background-color: $white-button;
- @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.4rem;
-
- }
- .field--type-link {
- @extend %buttonwithborder;
- width: fit-content;
- .page-programme{
- padding: 0.4rem;
- }
- }
- .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;
- }
-
|