-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
137 lines (131 loc) · 2.17 KB
/
style.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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
* {
box-sizing: border-box;
font-family: 'Red Hat Display';
}
body {
background-image: url('./images/pattern-background-desktop.svg');
margin-top: 4%;
}
header img {
border-top-right-radius: 25px;
border-top-left-radius: 25px;
width: 405px;
}
.container {
width: 27%;
min-height: 30PX;
margin: auto;
background-color: rgb(255, 255, 255);
border-radius: 25px;
}
h1 {
font-family: 'Red Hat Display', sans-serif;
text-align: center;
font-size: 25px;
color: black;
margin: auto;
}
h2 {
text-align: center;
font-size: 15px;
padding: 20px;
color: gray;
}
.plan_package img {
width: 70px;
padding-right: 12px;
}
.plan_package p {
font-size: 2px;
margin-left: 0;
text-align: left;
}
.plan_package a {
font-size: 12px;
margin-left: 20%;
}
.plan_package {
display: flex;
justify-content: center;
align-items: center;
background-color: hsl(225, 100%, 98%);
width: 80%;
border-radius: 25px;
margin-left: 8%;
}
.btn-container button {
background-color: hsl(245, 75%, 52%);
margin-top: 8%;
margin-left: 8%;
width: 80%;
height: 40px;
border: none;
border-radius: 25px;
color: #fff;
font: bold;
}
h4 {
display: flex;
justify-content: center;
align-items: center;
padding-bottom: 20px;
font-weight: lighter;
font-size: 15px;
color: gray;
}
/* Desktop - 1440px
Laptop - 1024px
Tablet - 768px
Mobile - 414px */
@media screen and (min-width: 1366px) {
body{
background-image: url('./images/pattern-background-desktop.svg');
margin-top: 4%;
}
.container {
width: 405px;
margin: auto;
}
header img{
width: 405px;
}
}
@media screen and (min-width: 768px) {
body{
background-image: url('./images/pattern-background-desktop.svg');
margin-top: 8%;
}
.container {
width: 405px;
margin: auto;
}
header img{
width: 405px;
}
}
@media screen and (min-width: 414px) {
body{
background-image: url('./images/pattern-background-mobile.svg');
margin-top: 8%;
}
.container {
width: 405px;
margin: auto;
}
header img{
width: 405px;
}
}
@media screen and (min-width: 360px) {
body{
background-image: url('./images/pattern-background-mobile.svg');
margin-top: 8%;
}
.container {
width: 325px;
margin: auto;
}
header img{
width: 325px;
}
}