-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (96 loc) · 1.67 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
.topnav {
background-color: #333;
overflow: hidden;
}
.topnav a {
float: left;
color: #09C8FE;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
html{background-color:#000000;
font-family:sans-serif;}
.topnav a.active {
background-color: #04AA6D;
color: #09C8FE;
}
p{color: #09C8FE}
a:link {
color: #09C8FE;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: #09C8FE;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: #09C8FE;
background-color: transparent;
text-decoration: underline;
}
a:active {
color: #09C8FE;
background-color: transparent;
text-decoration: underline;
}
.topnav input[type=text] {
float: right;
padding: 14px 16px;
border: none;
margin-top: 8px;
margin-right: 16px;
font-size: 17px;
}
.button {
background-color: #000000;
border: none;
color: #000000;
padding: 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
}
.btn {
border: none;
background-color: black;
padding: 14px 28px;
font-size: 16px;
cursor: pointer;
display: inline-block;
}
/* On mouse-over */
.btn:hover {background: #09C8FE;}
body{
color: #09C8FE
}
.search-form {
display: flex;
justify-content: center;
align-items: center;
}
.search-input {
padding: 8px;
border-radius: 4px 0 0 4px;
border: 1px solid #ccc;
font-size: 16px;
width: 200px;
}
.search-button {
background-color: #007bff;
color: #fff;
border: none;
padding: 8px 16px;
border-radius: 0 4px 4px 0;
font-size: 16px;
cursor: pointer;
}