mirror of
https://gitea.phreedom.club/tolstoevsky/fedi.git
synced 2024-10-31 18:47:17 +00:00
48 lines
1,009 B
CSS
48 lines
1,009 B
CSS
.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;
|
|
display:flex;
|
|
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;
|
|
display:flex;
|
|
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;
|
|
}
|
|
|