-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·108 lines (101 loc) · 1.67 KB
/
style.css
File metadata and controls
executable file
·108 lines (101 loc) · 1.67 KB
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
body {
background: url("pattern.jpg") no-repeat center center fixed;
background-size: cover;
}
h2,h3 {
color: #C0C0C0;
margin-left: 5px;
margin-right: 5px;
}
h1 {
color: #121F1F;
font-size: 75px;
margin-left: 5px;
margin-right: 5px;
}
.strokeme
{
color: white;
text-shadow:
-1px -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000,
1px 1px 0 #000;
}
a {
color: black;
font-size: 15px;
text-decoration: none !important;
}
a:hover,a:active,a:visited{
color: black;
}
.searchMain{
display: block;
align-items: center;
width: 100%;
margin: auto;
margin-top: 20%;
}
.form-control{
width: 20%;
}
.col-centered{
margin: auto;
float: none;
}
.btn:focus,
.btn:active {
outline: none !important;
}
input[type="text"]{
border: 1px solid #C0C0C0;
transition: .5s all ease;
background-color: rgba(200,200,200,0.6);
color: white;
display: block;
margin: auto;
}
input[type="text"]:focus{
width: 40%;
transition: .5s all ease;
border: 1px solid #121f1f;
}
input[type="submit"]{
border-radius: 10px;
background-color: #121f1f;
display: block;
margin: auto;
margin-top: 5px;
margin-bottom: 5px;
color: white;
border: none;
width: 13%;
}
input[type="submit"]:hover{
background-color: #121f1f;
color: white;
}
/*Second page specific*/
.bottomSearch{
border: 3px solid #C0C0C0;
margin-top: 30px;
margin-bottom: 30px;
}
.panel{
background-color: rgba(200,200,200,0.6);
display: block;
align-items: center;
width: 90%;
margin: auto;
margin-top: 15px;
margin-bottom: 15px;
}
.panel-body{
border-top: 1px black !important;
}
.homeSearch{
height: 40px;
width: 40px;
padding-top: 5px;
}