-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
84 lines (84 loc) · 1.45 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap');
* {
box-sizing: border-box;
}
body {
background-color: hsl(0, 0%, 98%);
font-family: 'Poppins', sans-serif;
width: fit-content;
margin: 0 auto;
}
header {
margin: 50px auto;
max-width: 500px;
text-align: center;
}
h1 {
font-weight: 200;
margin: 0;
}
h1 span {
font-weight: 600;
}
p {
color: hsl(229, 6%, 66%);
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin: 0 auto;
max-width: 1140px;
}
.box {
background-color: #fff;
box-shadow: 0 10px 20px rgba(0,0,0,0.05), 0 6px 6px rgba(0,0,0,0.1);
border-radius: 5px;
padding: 30px;
position: relative;
overflow: hidden;
margin: 15px;
width: 350px;
}
.box::after {
content: '';
position: absolute;
top: 0;
left: 0;
height: 5px;
width: 100%;
}
.box-red::after {
background-color: hsl(0, 78%, 62%);
}
.box-cyan::after {
background-color: hsl(180, 62%, 55%);
}
.box-orange::after {
background-color: hsl(34, 97%, 64%);
}
.box-blue::after {
background-color: hsl(212, 86%, 64%);
}
.box-push {
transform: translateY(50%);
}
.box h2 {
margin: 0;
}
.box p {
font-size: 14px;
margin: 15px 0 40px;
}
.box img {
display: block;
margin-left: auto;
}
footer {
text-align: center;
}
@media (max-width:775px) {
.box-push {
transform: translateY(0);
}
}