-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.css
58 lines (52 loc) · 954 Bytes
/
api.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
*
{
background-color: #1D1B38;
font-family: 'Montserrat', sans-serif;
color: #c7b198;
text-align: center;
}
.heading{
font-family: 'Montserrat Subrayada', sans-serif;
text-align: center;
}
.sub{
text-align: center;
}
.container
{
text-align: center;
}
input[type=text] {
border: 2px solid #c7b198 ;
background-color: #c7b198;
height: 22.5px;
border-radius: 2px;
color: black;
}
footer
{
text-align: center;
margin-top: 20%;
}
#search {
box-shadow:inset 0px 0px 50px -16px #d8a25c;
background:linear-gradient(to bottom,#c7b198 5%, #c7b198 100%);
background-color:#c7b198;
border-radius:1px;
border:1px solid #f3d984;
display:inline-block;
cursor:pointer;
color:#161516;
font-family:Georgia;
font-size:16px;
padding:3px 30px;
text-decoration:none;
}
#search:hover {
background:linear-gradient(to bottom, #dfd3c3 5%, #dfd3c3 100%);
background-color: #dfd3c3;
}
#search:active {
position:relative;
top:1px;
}