-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
81 lines (71 loc) · 1.12 KB
/
Copy pathstyle.css
File metadata and controls
81 lines (71 loc) · 1.12 KB
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
body{
font-family: 'Teko', sans-serif;
background: url('back2.jpg');
background-size: cover;
background-repeat: no-repeat;
color: #fff;
}
h2{
text-align: center;
color: #AEB404;
font-size: 30px;
}
.col
{
float: left;
width: 33.3%;
padding:8px;
box-sizing: border-box;
}
.box{
background: #fff;
color: #555;
list-style-type: none;
border:1px solid #555;
margin: 0px;
padding:0px;
transition: 0.3s;
}
.box:hover, .box.box-1{
box-shadow: 0 10px 15px 0 #00;
}
.box .header{
background-color: #111;
color: #fff;
font-size: 34px;
}
.box .header.header-color{
background-color: #D13902;
}
.box .header.header-color1{
background-color: #4CAf50;
}
.box li{
padding: 20px;
border-bottom: 2px solid #eee;
text-align: center;
font-size: 24px;
}
.hov:hover{
background: #EEE6E8;
}
.box .price{
background-color: #f4f4f4;
font-size: 20px;
}
.button{
background-color: #A20101;
border:none;color: #fff;
padding: 10px 15px;
text-align: center;
text-decoration: none;
font-size: 18px;
}
.button:hover{
background-color: #1B4F72;
}
@media (max-width: 700px){
.col{
width: 100%;
}
}