switching/css/btn.css

48 lines
1009 B
CSS
Raw Normal View History

2020-02-17 21:20:28 +00:00
.Button {
box-shadow: 0px 10px 14px -7px #3e7327;
background:linear-gradient(to bottom, #77b55a 5%, #72b352 100%);
background-color:#77b55a;
border-radius:4px;
border:1px solid #4b8f29;
2020-02-21 06:32:32 +00:00
display:flex;
2020-02-17 21:20:28 +00:00
cursor:pointer;
color:#ffffff;
font-size:13px;
font-weight:bold;
padding:1% 2%;
text-decoration:none;
text-shadow:0px 1px 0px #5b8a3c;
}
.Button:hover {
background:linear-gradient(to bottom, #72b352 5%, #77b55a 100%);
background-color:#72b352;
}
.Button:active {
position:relative;
top:1px;
}
.Button2 {
box-shadow:inset 0px -3px 7px 0px #29bbff;
background:linear-gradient(to bottom, #2dabf9 5%, #0688fa 100%);
background-color:#2dabf9;
border-radius:3px;
border:1px solid #0b0e07;
2020-02-21 06:32:32 +00:00
display:flex;
2020-02-17 21:20:28 +00:00
cursor:pointer;
color:#ffffff;
font-size:15px;
padding:1% 2%;
text-decoration:none;
text-shadow:0px 1px 0px #263666;
}
.Button2:hover {
background:linear-gradient(to bottom, #0688fa 5%, #2dabf9 100%);
background-color:#0688fa;
}
.Button2:active {
position:relative;
top:1px;
}