1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-09 05:15:02 +00:00
mon-entreprise/source/components/BlueButton.css
2018-04-23 15:45:56 +02:00

29 lines
457 B
CSS

#action a {
cursor: default;
}
.blueButton {
color: white;
display: block;
padding: 0.3em 1em;
font-size: 200%;
min-width: 8em;
margin: 0 auto;
border: none;
box-shadow: 0px 9px 14px 0px rgba(0, 0, 0, 0.1);
opacity: 0.95;
border-radius: 0.2em;
transition: background 0.3s;
}
.blueButton:hover {
box-shadow: none;
opacity: 1;
}
.blueButton:disabled {
background: #4b4b6633 !important;
box-shadow: none;
}
.blueButton a {
color: inherit;
}