-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
90 lines (79 loc) · 1.36 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap');
*{
box-sizing: border-box;
}
body{
font-family: poppins, sans-serif;
background-color: hsl(0, 0%, 98%);
}
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;
max-width: 1140px;
margin: 0 auto;
}
.box{
background-color: #fff;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), 0 6px 6px rgba(0, 0, 0, 0.1);
border-radius: 5px;
overflow: hidden;
padding: 30px;
position: relative;
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 h2{
margin: 0;
}
.box p{
font-size: 14px;
margin: 15px 0 30px;
}
.box img{
display: block;
margin-left: auto;
}
footer{
text-align: center;
}
@media (min-width: 1000px){
.box-push{
transform: translateY(50%);
}
}