-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
57 lines (49 loc) · 787 Bytes
/
styles.css
File metadata and controls
57 lines (49 loc) · 787 Bytes
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #F73A65;
}
article {
background-color: #fff;
width: 40%;
margin: 40px auto 100px auto;
padding: 20px;
border-radius: 5px;
box-shadow: 0 2px 8px 0 rgba(0,0,0,0.15);
display: flex;
flex-direction: column;
justify-content: center;
}
.bff-icon {
height: 300px;
margin-top: 30px;
margin-bottom: 40px;
}
h2 {
text-align: center;
color: #833989;
font-family: 'Pacifico', cursive;
}
p {
color: #FFDF57;
font-family: Helvetica;
float: right;
}
a {
color: #833989;
}
@media screen and (max-width: 900px) {
article {
width: 90%;
}
}
@media screen and (max-width: 700px) {
.bff-icon {
height: 250px;
margin-top: 15px;
margin-bottom: 20px;
}
}