-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
97 lines (82 loc) · 1.47 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
* {
margin: 0 auto;
box-sizing: border-box;
font-family: "Red Hat Display", sans-serif;
}
body {
background-repeat: no-repeat;
background-image: url("images/pattern-background-desktop.svg");
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.container {
border-radius: 20px;
background-color: #ffffff;
width: 375px;
height: 568px;
margin-bottom: 20px;
box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}
.container img {
border-radius: 20px 20px 0 0;
width: 375px;
}
.text {
padding: 20px;
font-size: 20px;
text-align: center;
}
.text h1 {
margin-bottom: 10px;
}
.text p {
color: black;
font-size: 16px;
font-family: 900;
}
.plan {
background-color: hsl(225, 100%, 98%);
padding: 13px;
width: 276px;
border-radius: 10px;
margin: 0px auto 15px auto;
text-align: center;
font-size: 12px;
display: flex;
justify-content: center;
align-items: center;
}
.plan img {
width: 45px;
margin-right: 10px;
}
.plan a:hover {
text-decoration: none;
color: #9fb9ff;
}
button {
background-color: hsl(245, 75%, 52%);
border: none;
border-radius: 13px;
color: white;
padding: 17px 80px;
display: flex;
box-shadow: 0 13px 15px rgba(0, 0, 0, 0.116);
}
button:hover {
background-color: hsl(224, 23%, 55%);
}
.butt {
text-decoration: none;
text-align: center;
}
.butt a {
text-decoration: none;
color: hsl(228, 100%, 85%);
}
.butt a:hover {
color: hsl(0, 0%, 0%);
}