-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
69 lines (62 loc) · 1.13 KB
/
styles.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
body{
background:linear-gradient(#023047,#219ebc);
color: #ffb703;
text-align: center;
font-family: 'Syncopate', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
}
h1, h2, h3, h4{
text-shadow: 0px 0px 1px black;
}
#mark-img{
width: 200px;
height: 200px;
border-radius: 50%;
border: 5px solid #fb8500;
}
#bdy-date{
background: #219ebc;
padding: 10px;
border: 2px solid #8ecae6;
border-radius: 5px;
}
#header{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.gift-section{
margin-top: 25px;
}
.gift-title{
margin-bottom:10px;
}
.gift-hint{
margin-top:0;
}
.gift-img{
margin: 0px auto;
width: 400px;
height: 400px ;
background: url("images/gift-cover.jpg");
background-size:cover;
border: 2px solid #8ecae6;
border-radius: 10px;
}
.gift-img:hover{
background: url("images/cake.gif");
background-size: cover;
padding-right: 150px;
}
#footer{
width: 400px;
margin: 40px auto 20px;
font-style: italic;
font-size: 12px;
}
a{
color: white;
}