-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
51 lines (49 loc) · 970 Bytes
/
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
@import url('https://fonts.googleapis.com/css?family=Lobster+Two');
html,body{
background: url("img/background.svg") no-repeat center center fixed,linear-gradient(50deg, #7383FF, #C384FB);
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
body{
/*background-size:cover;
background-position:center;*/
color: #495057;
display: flex;
flex-direction: column;
min-height: 100vh;
}
.search{
margin: 100px auto auto auto;
padding: 3%;
}
.title{
margin: auto;
padding-top: 10%;
color: #ffffff;
font-family: 'Lobster Two', cursive;
font-size: 4.5rem;
}
.card{
min-width: 100%;
}
#display-result a{
color: #7383FF;
}
#display-result{
margin: auto;
padding: 3%;
color: gray;
}
a{
margin: auto;
color: #cecece;
font-weight: bold;
font-size: 20px;
text-decoration: underline;
}
footer{
margin-top: auto;
padding: 1%;
}