-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
129 lines (119 loc) · 2.32 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
*{
font-family: 'Red Hat Display', sans-serif;
font-size: 16px;
}
body{
/* width:100%; */
display:flex;
background-color:hsl(225, 100%, 94%);
background-repeat: no-repeat;
background-position:top;
background-size: 100vw 45vh;
background-image:url('images/pattern-background-desktop.svg');
flex-direction: column;
align-items:center;
justify-content:space-around;
height: 100vh;
}
.card{
/* border: 2px solid black; */
background-color: white;
width: 20.5rem;
height: 34.313rem;
border-radius: 17px;
/* margin: 98px 0px; */
text-align: center;
padding:35px 35px;
box-shadow: rgba(0, 0, 0, 0.082) 15px 15px 25px ;
}
.card>img{
width: 24.89rem;
position:relative;
bottom:36px;
height: 13rem;
border-top-left-radius: 17px;
border-top-right-radius: 17px;
right: 35px;
}
.card h2{
font-size: 25px;
font-weight: 900;
color: hsl(223, 47%, 23%);
position: relative;
bottom:35px;
/* left:0px; */
}
.card p{
font-size: 15px;
color:hsl(224, 23%, 55%);
text-align-last: center;
}
.para{
text-align:center;
position:relative;
bottom: 42px;
}
.left{
background-color: hsl(225, 100%, 98%);
width: 20.5rem;
height: 6rem;
position: relative;
bottom: 38px;
border-radius: 17px;
}
.left img{
position:relative;
top:22px;
right:77px;
}
.left p{
position: relative;
font-weight: 700;
bottom:17px;
right:38px;
}
.left span{
font-weight: 900;
color: hsl(223, 47%, 23%);
position: relative;
bottom:10px;
right:63px;
}
.right p{
color:hsl(245, 75%, 52%);
text-decoration:2px underline;
font-weight:700;
position: relative;
bottom:113px;
left:110px;
cursor: pointer;
}
.right p:hover{
color:hsl(224, 23%, 55%);
text-decoration:none;
}
button{
background-color: hsl(245, 75%, 52%);
outline: none;
width: 20.5rem;
height: 2.8rem;
border-radius: 10px;
border-style: hidden;
color: white;
position: relative;
bottom: 60px;
box-shadow: hsl(224, 41%, 71%) 8px 8px 25px ;
cursor: pointer;
}
button:hover{
opacity:0.7;
}
.bottom p{
font-weight: 700;
position: relative;
bottom: 42px;
cursor: pointer;
}
.bottom p:hover{
color:hsl(223, 47%, 23%);
}