-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (112 loc) · 2.22 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
@import url('https://fonts.googleapis.com/css2?family=Andada+Pro&display=swap');
*{
font-family: 'Red Hat Display', sans-serif;
}
div{
color: hsl(225, 100%, 94%) hsl(245, 75%, 52%) hsl(225, 100%, 98%) hsl(224, 23%, 55%)
}
body{
height:675px;
width:95%;
display: flex;
justify-content: center;
align-items: center;
background: url('images/pattern-background-desktop.svg') no-repeat hsl(225, 100%, 94%);
background-size:100vw;
}
.card{
display: flex;
flex-direction: column;
height: 85%;
width: 350px;
border-radius: 10px;
background-color:hsl(225, 100%, 98%);
}
p{
margin: 0px;
}
.text p{
box-sizing: border-box;
color: grey;
margin:0px 10px;
font-size: 16px;
}
#topimg{
border-radius: 10px 10px 0px 0px;
flex-grow: 1;
}
.text{
text-align: center;
flex-grow: 1;
}
.plan{
text-align: center;
display: flex;
padding: 0px 10px;
align-items: center;
flex-grow: 1;
margin:0px 20px;
background-color:hsl(225, 100%, 94%);
border-radius: 10px;
flex-wrap: wrap;
}
.plan>div{
flex-grow:2;
text-align: left;
box-sizing: border-box;
padding:0px 20px;
}
a{
color:hsl(245, 75%, 52%);
font-weight: 600;
font-size: large;
}
a:hover{
text-decoration: none;
opacity: 0.7;
cursor: pointer;
}
.bottom{
display: flex;
flex-direction: column;
justify-content: center;
flex-grow: 1;
margin-bottom: 10px;
}
button{
background-color:hsl(225, 100%, 98%);
border-style: none;
margin: 10px 60px;
color:gray;
font-weight: 700;
font-size: medium;
}
button:hover{
color: hsl(223, 47%, 23%);
cursor: pointer;
}
.submit{
background-color:hsl(245, 75%, 52%);
padding:10px;
border-radius: 10px;
color: white;
font-size: 15px;
box-shadow:0px 5px 5px hsl(245, 75%, 52%);
}
.submit:hover{
opacity: 0.7;
color: white;
box-shadow:0px 8px 15px hsl(245, 75%, 52%);
}
@media (max-width:376px){
body{
width: 350px;
height: 650px;
}
.card{
width:90%;
}
.plan>div{
padding: 0px 10px;
}
}