1
0
Fork 0
mirror of https://github.com/betagouv/mon-entreprise synced 2025-02-09 02:55:01 +00:00
mon-entreprise/source/components/BlueButton.css
2018-01-30 16:24:28 +01:00

29 lines
453 B
CSS

#action a {
cursor: default;
}
.blueButton {
color: white;
display: block;
padding: 0.3em 1em;
font-size: 200%;
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;
}