main.css
711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
button
{
margin: 30px;
border: 3x solid black;
background-color: yellow;
color: black;
padding: 5px;
border-radius: 8px;
}
<a href="#" class="button1">About Us</a>
.button1 {
box-shadow: 5px 10px 14px 2px #9fb4f2;
background:linear-gradient(to bottom, #7892c2 5%, #476e9e 100%);
background-color:#7892c2;
border-radius:8px;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size:20px;
font-weight:bold;
padding:13px 32px;
text-decoration:none;
text-shadow:0px 1px 0px #283966;
}
.About Us:hover {
background:linear-gradient(to bottom, #476e9e 5%, #7892c2 100%);
background-color:#476e9e;
}
.About Us:active {
position:relative;
top:1px;
}