-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackagesCss.css
More file actions
112 lines (93 loc) · 1.62 KB
/
packagesCss.css
File metadata and controls
112 lines (93 loc) · 1.62 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
main{
padding-top: 2rem;
}
.background{
background: url("package_img.jpg");
width: 100vw;
height: 100vh;
position: fixed;
z-index: -1;
}
.package{
width: 80%;
margin: 1rem 0;
border: 4px solid #0e4f1f;
border-left: none;
position: relative;
}
.package:hover,
.package:active{
box-shadow: 2px 2px 4px rgba(0,0,0,0.5);
border-color: #ff5454;
}
.package a{
text-decoration: none;
color: inherit;
display: block;
padding: 2rem;
}
.package__badge{
position: absolute;
top: 0;
right: 0;
margin: 1.2rem;
font-size: 0.8rem;
color:white;
background: #ff5454;
padding: 0.5rem;
}
.package__subtitle{
color: #979797;
}
.package__info{
padding: 1rem;
border: 1px solid #0e4f1f;
font-size: 1.2rem;
color: #0e4f1f;
background: white;
}
.clearfix{
clear:both;
}
#plus{
background: rgba(213, 255, 220, 0.95);
}
#free{
background: rgba(234, 252, 237, 0.95);
float: right;
border-right: none;
border-left: 4px solid #0e4f1f;
text-align: right;
}
#free:hover,
#free:active{
border-left-color: #ff5454;
}
#premium{
background: rgba(14, 79, 31, 0.95);
}
#premium .package__title{
color: white;
}
#premium .package__subtitle{
color: #bbb;
}
@media (min-width: 40rem){
main{
max-width: 1500px;
margin-left: auto;
margin-right: auto;
}
}
@media (min-width: 1500px){
.package{
border-left: 4px solid #0e4f1f;
}
#free{
border-right: 4px solid #0e4f1f;
}
#free:hover,
#free:active{
border-right-color: #ff5454;
}
}