-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathharrystyles.css
123 lines (102 loc) · 1.72 KB
/
harrystyles.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
#content {
font-family: Montserrat;
margin: 20px;
}
.banner {
position: relative;
}
.banner-image {
width: 100%;
}
.banner-text {
position: absolute;
bottom: 0;
left: 0;
margin: 4rem;
}
h1 {
color: white;
font-family: Montserrat;
font-size: 60px;
font-weight: 600;
text-transform: uppercase;
}
.shop-button {
background-color: white;
border: none;
border-radius: 25px;
color: #133A7C;
font-family: Montserrat;
font-weight: 700;
padding: 15px 20px;
text-align: center;
text-transform: uppercase;
font-size: 15px;
}
.cards {
background-color: #F5F5F5;
display: flex;
margin-top: 20px;
justify-content: center;
flex-wrap: wrap;
}
.card {
display: flex;
flex: 1 1 0;
margin: 20px 0;
padding: 0 20px;
}
.card:not(:last-child) {
border-right: 2px solid #E5E5E5;
}
@media (max-width:960px) {
h1 {
font-size: 2rem;
}
.card:not(:last-child) {
border-right: 0;
}
.banner-text {
margin: 2rem;
}
.shop-button {
font-size: 10px;
padding: 10px 15px;
}
}
@media (max-width:600px) {
h1 {
font-size: 1.5rem;
}
}
.card > div > p {
margin: 0;
padding: 0;
}
.card > div.card-text {
display: flex;
flex-flow: column;
flex-grow: 1;
justify-content: center;
padding: 0 15px;
width: 15rem;
}
.card > div > p.card-title {
font-family: Montserrat;
font-size: 20px;
font-weight: 400;
}
.card > div > p.card-desc {
font-size: 14px;
}
.card-icon, .card-arrow {
display: flex;
justify-content: center;
align-items: center;
}
.card-arrow {
font-size: 30px;
}
u {
color: #000;
}