-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle1.css
85 lines (74 loc) · 1.55 KB
/
style1.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
body
{
background-image: url("mainbackg.jpg");
background-repeat: no-repeat;
background-size: cover;
/*height: 384px;
background: linear-gradient(to bottom, #000000 0%, #A0A0A0 100%)*/
}
.header {
background-color: rgba(0,0,0,0.3);
padding: 5px;
text-align: center;
}
#head1
{
color: white;
font-weight: bold;
font-family: sans-serif;
}
.container{
width: 95%;
overflow: hidden;
background-color: rgba(0,0,0,0.3);
margin: 20px auto;
padding: 20px;
}
.container ul{
padding: 0px;
margin: 0px;
}
.container ul li{
list-style: none;
float:left;
width: 20%;
height: 300px;
background: skyblue;
margin: 40px 40px 0px 55px;
box-sizing: border-box;
border: 2px solid white;
}
.container ul li .title{
width: 100%;
height: 50px;
line-height: 50px;
background-color: rgba(0,0,0,0.3);
text-align:center;
font-weight: bold;
font-family: sans-serif;
color: white;
}
.container ul li.st1{
background-image: url("add.png");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.container ul li.st2{
background-image: url("del.png");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.container ul li.st4{
background-image: url("list.png");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.container ul li.st3{
background-image: url("modify.png");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}