-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
93 lines (80 loc) · 1.42 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
*{
box-sizing: border-box;
}
body{
font-family: 'Poppins', sans-serif;
background-color: hsl(0, 0%, 98%);
}
header{
max-width: 500px;
text-align: center;
margin: 50px auto;
}
h1{
font-weight: 200;
margin: 0;
}
.strong{
font-weight: 600;
}
p{
color: hsl(229, 6%, 66%)
}
.container{
display: flex;
max-width: 1140px;
margin: 0 auto;
flex-wrap: wrap;
justify-content: center;
}
.box{
background-color: #fff;
padding: 30px;
width: 350px;
margin: 15px;
box-shadow: 0 10px 20px rgba(0,0,0,0.05), 0 6px 6px rgba(0,0,0,0.1);
border-radius: 5px;
position: relative;
overflow: hidden;
}
.box::after{
content: "";
background-color: purple;
position: absolute;
top: 0;
left: 0;
height: 5px;
width: 100%;
}
.box-blue::after{
background-color:hsl(212, 86%, 64%) ;
}
.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 h2{
margin: 0;
}
.box-push{
transform: translateY(50%);
}
.box p{
font-size: 14px;
margin-top: 15px;
margin-bottom: 40px;
}
.box img{
display: block;
margin-left: auto;
}
@media (max-width:775px){
.box-push{
transform: translateY(0);
}
}