-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
84 lines (69 loc) · 1004 Bytes
/
styles.css
File metadata and controls
84 lines (69 loc) · 1004 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
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
body {
background-color: #aceccf;
height: 100vh;
}
div.container {
background-color: #d5f6e7;
width: 80vw;
align-content: center;
}
div.main {
text-align: center;
}
i.fa-heart {
color: #21915f;
font-size: 2rem;
padding: 1rem;
}
.name {
color: #cf205c;
}
p {
padding: 1rem;
font-size: 2rem;
font-family: 'Montserrat', sans-serif;
}
img {
width: 25rem;
height: auto;
border-radius: 50%;
}
h1 {
font-family: 'Pacifico', cursive;
font-size: 5rem;
}
a, a:visited {
color: #cf205c;
}
.social a {
font-family: 'Pacifico', cursive;
font-size: 2.5rem;
padding: 1rem;
}
a:hover {
color: #21915f;
text-decoration: none;
}
/* Mobile Styling */
@media only screen
and (max-device-width: 600px)
{
img {
width: 30rem;
}
i.fa-heart {
font-size: 4rem;
padding: 2rem;
}
h1 {
font-size: 10rem;
}
p {
padding: 2.5rem;
font-size: 4rem;
}
.social a {
font-size: 6rem;
padding: 2.5rem;
}
}