-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.css
57 lines (49 loc) · 854 Bytes
/
menu.css
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
body {
background-color: orchid;
}
h1 {
font-family : verdana;
font-size: 14px;
font-weight: bold;
text-align: center;
color : orangered;
}
h2 {
font-family:verdana;
font-size:12px;
font-weight:bold;
text-align:center;
color:blueviolet;
}
ul {
list-style:none;
padding:0px;
margin-left: 10px;
}
a {
font-family : verdana;
font-size: 12px;
font-weight: bold;
text-align: right;
color: white;
width: 100px;
padding : 10px;
margin-bottom: 5px ;
border-radius: 15px 0 0 15px;
background-color: darkred;
display : block;
text-decoration: none ;
}
a:hover {
background-color: lightcoral;
background-image: url(right.png);
background-repeat: no-repeat;
background-position: 6px 6px;
}
div {
padding: 5px;
margin: 10px auto;
border: 2px dashed red;
border-radius: 15px ;
background-image: url(paper.jpg);
}