-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
79 lines (63 loc) · 1.24 KB
/
Copy pathstyles.css
File metadata and controls
79 lines (63 loc) · 1.24 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
body {
margin-top: 0;
text-align: center;
font-family: 'Happy Monkey', 'cursive';
background: linear-gradient(#a2d2ff, #EFB0C9);
color: #ffffff;
}
h1, h2, h3 {
text-shadow: 0px 0px 2px black;
}
#header {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 100px;
}
#title{
margin: 0;
font-size: 100px;
}
#profile-img{
width: 500px;
height: 600px;
border-radius: 70%;
border: 6px solid #EFB0C9;
margin-top: 10px;
}
#age{
margin: 20px auto 0 auto;
font-size: 60px;
background: #EFB0C9;
}
#date{
margin: 20px 0 0 30px;;
font-size: 40px;
background: #EFB0C9;
}
.gift-section {
}
.gift-img {
background-image: url("images/gift-cover.jpg");
background-size: cover;
border: 10px solid #ffffff;
border-radius: 10px;
max-width: 500px;
height: 500px;
margin: 0 auto 30px auto;
}
#happy-img:hover {
background-image: url("images/happy.gif");
}
#hot-img:hover {
background-image: url("images/hot.gif");
}
#genius-img:hover {
background-image: url("images/genius.gif");
}
#badass-img:hover {
background-image: url("images/badass.gif");
}
#cheers-img:hover {
background-image: url("images/cheers.gif");
}