-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
87 lines (72 loc) · 1.22 KB
/
style.css
File metadata and controls
87 lines (72 loc) · 1.22 KB
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
body, h1, h2, h3, h4, p, a {
margin: 0;
font-size: 100%;
font-weight: normal;
}
* {
box-sizing: border-box;
}
body {
font-family: 'Helvetica', 'Arial', sans-serif;
}
.header {
height: 100vh;
background-color: #eee;
background-image: url(https://pictures.s3.yandex.net/frontend-developer/free-course/cover.jpg);
background-size: cover;
background-position: center;
text-align: center;
}
.header-title {
font-size: 140px;
color: white;
text-transform: uppercase;
font-weight: 500;
margin: auto;
}
h3 {
}
.overlay {
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, .5);
display: flex;
}
.content {
font-size: 0px;
width: 790px;
margin: 100px auto 50px;
}
.card {
width: 350px;
margin-bottom: 60px;
padding: 45px 45px 70px;
display: inline-block;
margin-right: 90px;
box-shadow: 4px 4px 5px rgba(250, 50, 50, .4);
}
.no-right-margin {
margin-right: 0px;
}
.card-title {
font-size: 24px;
font-weight: 500;
margin-bottom: 10px;
}
.card-text {
font-size: 16px;
}
.card-image {
width: 100%;
margin-bottom: 25px;
}
.footer {
height: 300px;
background-color: #000;
display: flex;
}
.footer-author {
color: #fff;
font-size: 24px;
margin: auto;
}