forked from annafridamaria/mob-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
85 lines (76 loc) · 1.25 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
body {
background: #47e4bb;
font-family: 'Raleway', sans-serif;
margin: 30px;
padding: 10px;
}
h1{
font-size: 50px;
text-align: center;
color: #e8647c;
font-family: 'Permanent Marker', cursive;
letter-spacing: 2px;
}
h3 {
font-size: 20px;
color: #e8647c;
}
p {
font-style: italic;
font-size: 16px;
color:#e8647c;
}
a {
text-decoration: none;
width: 100%;
text-align: center;
}
h3:hover {
color: #ec9b3b;
transition: 0.5s;
}
.flex-parent {
display:flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
padding: 15px;
}
.image-box-small {
background: #ffda6a;
height: 385px;
width: 27%;
margin: 10px;
padding: 15px;
display: flex;
flex-direction: column;
align-items: center;
border:solid 5px #ec9b3b;
}
.image-box-big {
background: #ffda6a;
height: 385px;
width: 42.5%;
margin: 10px;
padding: 15px;
display: flex;
flex-direction: column;
align-items: center;
border:solid 5px #ec9b3b;
}
footer {
text-align: center;
color: #e78a17;
font-weight: 700;
}
img {
border-radius: 50%;
width: 70%;
max-width: 250px;
height: auto;
}
hr{
background: #e8647c;
height: 2px;
border: none;
}