-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (62 loc) · 1.09 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
/*
#E42F5C - pink
#D3BF9E - beige
*/
html,body{
background-image:url("images/gift.jpg");
/*font-family: 'Pacifico', cursive;*/
font-family: 'Happy Monkey', cursive;
background-size:cover;
background-position:center;
height:100%;
}
h1,p{
background-color: #D3BF9E;
border-radius: 25px;
}
.lead{
padding:5px;
border-radius: 15px;
background-color:#E42F5C;
color:white;
}
.container{
background-color:rgba(211, 191, 156, 0.5);
padding: 50px;
border: 3px dashed #E42F5C;
margin: 10px auto;
}
.form-group{
margin: 10px;
}
#fail{
background-color: white;
color: #E42F5C;
}
h2{
font-size: 3em;
}
#findGift{
margin-top:10px;
}
.center{
margin: 0 auto;
text-align: center;
}
.alert,.jumbotron{
background-color:#E42F5C;
display: none;
color: white;
border: 3px dashed #D3BF9E
}
.pink{
background-color:#E42F5C;
border: 1px solid #D3BF9E;
}
#findGift:hover{
background-color: white;
color: #E42F5C;
}
.pinkText{
color:#E42F5C;
}