-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
122 lines (102 loc) · 1.52 KB
/
styles.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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
h1 {
text-align: center;
padding: 25px 0;
font-weight: 700;
}
.main-section {
display: flex;
flex-wrap: wrap;
max-width: 1180px;
justify-content: center;
margin: 30px auto;
}
header {
max-width: 1200px;
margin: 0 auto;
}
a {
text-decoration: none;
color: black;
}
.card {
width: 350px;
height: 350px;
box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.15);
margin: 20px;
border-radius: 20px;
}
.image {
height: 200px;
}
.ss {
width: 350px;
height: 200px;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
}
.content {
padding: 20px 15px;
}
p {
font-weight: 600;
}
button {
width: 140px;
height: 35px;
border-radius: 20px;
margin: 40px 0 0;
background-color: hsl(0, 0%, 98%);
border: 1px solid hsl(204, 43%, 93%);
}
button:hover {
background-color: hsl(204, 43%, 93%);
box-shadow: 0px 7px 10px rgba(112, 112, 119, 0.2);
width: 170px;
height: 40px;
}
.icon {
width: 20px;
height: 20px;
margin: 5px 30px 5px 15px;
}
.btn {
display: flex;
justify-content: left;
align-items: center;
}
.btn1 {
margin-right: 40px;
}
span {
font-weight: 500;
}
footer {
text-align: center;
padding-top: 50px;
}
footer .name {
color: red;
padding-right: 20px;
}
.social-icon {
padding: 10px 5px;
}
.social-icon:hover {
color: red;
}
/* Media Query */
@media (max-width: 400px) {
.card {
width: 340px;
margin: 20px 5px;
}
.ss {
width: 340px;
}
}