-
Notifications
You must be signed in to change notification settings - Fork 0
/
style7.css
59 lines (59 loc) · 1.06 KB
/
style7.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
@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,500,600,700,800,900&display=swap');
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins',sans-serif;
}
body
{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: linear-gradient(#0f4675,#0f4675 50%, #fff 50%, #fff 100%);
}
.container
{
width: 1100px;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.container .box
{
position: relative;
width: 320px;
background: #fff;
padding: 100px 40px 45px 40px;
box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}
.container .box img
{
height: 80px;
width: 80px;
}
.button
{
margin-top: 30px;
margin-left: 50px;
padding: 10px;
display: inline-flex;
margin-right: 20px;
}
.btn
{
border: 1px solid white;
padding: 10px 30px;
color: white;
text-decoration: none;
margin-right: 5px;
font-size: 13px;
text-transform: uppercase;
background-color: darkorange;
}
.container .box h4
{
text-decoration: overline;
}