-
Notifications
You must be signed in to change notification settings - Fork 119
/
style.css
130 lines (120 loc) · 2.27 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
/* CSS Class */
* {
box-sizing: border-box;
}
body{
background: rgb(19,19,20);
background: linear-gradient(90deg, rgba(19,19,20,1) 0%, rgba(59,56,56,1) 50%, rgba(0,0,0,1) 100%);
margin-bottom: 100px;
}
h1{
margin: 0;
font-family: 'Grandstander', cursive;
}
a{
color: #F8F8FF;
}
a:hover {
color: rgb(19,19,20);
background: rgb(247,173,94);
background: linear-gradient(90deg, rgba(247,173,94,1) 0%, rgba(250,141,26,1) 50%, rgba(247,173,94,1) 100%);
}
h2{
color: #F8F8FF;
font-family: 'Roboto', sans-serif;
}
.jumbotron-fluid{
padding: 10px;
}
.center h2{
text-align: center;
}
.center li{
text-align: center;
}
li {
list-style: none;
}
/* -------- */
.header-bg{
background: rgb(247,173,94);
background: linear-gradient(90deg, rgba(247,173,94,1) 0%, rgba(250,141,26,1) 50%, rgba(247,173,94,1) 100%);;
}
.jumbotron-fluid{
/* background-color: #f7ad5e; */
text-align: center;
}
.jumbotron-fluid h1{
color: #000000;
font-size: 8rem;
}
.jumbotron-fluid p{
color: #000000;
}
#footer{
background-color: blue;
text-align: center;
color: red;
bottom: 0px;
}
.list-grid ol{
column-count: 3;
}
@media (max-width: 768px) {
.jumbotron-fluid h1 {
font-size: 4rem;
}
}
.bottom-container{
width: 100%;
position: fixed;
padding: 15px;
padding-bottom: 0;
bottom: 0;
font-size: 20px;
background: rgb(19,19,20);
background: linear-gradient(90deg, rgba(19,19,20,1) 0%, rgba(59,56,56,1) 50%, rgba(0,0,0,1) 100%);
color: #eeecda;
text-align: center;
font-family: 'Bangers', cursive;
}
#search-bar{
display: flex;
align-items: center;
justify-content: center;
padding: 30px;
}
.autocomplete-items{
color:white;
margin-left: 20px;
}
.autocomplete-items div{
padding: 5px;
}
#myInput{
padding: 5px 20px;
border-radius: 15px;
outline: none;
/* text-align: center; */
}
::-webkit-input-placeholder {
text-align: center;
}
:-moz-placeholder { /* Firefox 18- */
text-align: center;
}
::-moz-placeholder { /* Firefox 19+ */
text-align: center;
}
:-ms-input-placeholder {
text-align: center;
}
.list{
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
li{
width: 300px;
padding: 15px 20px;
}