This repository was archived by the owner on Dec 12, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpricingtable.css
More file actions
70 lines (67 loc) · 1.16 KB
/
pricingtable.css
File metadata and controls
70 lines (67 loc) · 1.16 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
body {
background-color: #333;
color: aliceblue;
margin: 0;
font-family: "lato", sans-serif;
font-size: 1.1em;
line-height: 1.4;
font-weight: 400;
text-align: center;
}
h2 {
text-align: center;
}
.col {
/* display: inline-block; */
box-sizing: border-box;
padding: 1rem;
float: left;
width: 33.3%;
}
.price-box {
border: 1px solid #555;
background: #fff;
color: #555;
list-style-type: none;
margin: 0;
padding: 0;
transition:0.3s;
-webkit-transition:0.3s;
-moz-transition:0.3s;
-ms-transition:0.3s;
-o-transition:0.3s;
}
.price-box:hover, .price-box.best {
box-shadow: 0 10px 15px 0 #000;
}
.price-box .header {
background-color: #333;
color: #fff;
font-size: 25px;
}
.price-box li {
padding: 1rem;
border-bottom:1px solid #eee;
text-align: center;
}
.price-box .emph {
background-color: #f4f4f4;
font-size: 1rem;
}
.button {
background-color: lightgreen;
border: none;
color: #fff;
padding: 0.8rem 1rem;
text-align: center;
text-decoration: none;
font-size: 1.1rem;
}
.price-box .header-green {
background-color: lightgreen;
}
@media(max-width:700px){
.col {
width: 100%;
}
}