forked from TheTIW/UV-Static
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.css
117 lines (103 loc) · 1.77 KB
/
index.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
/* Custom CSS for black theme */
body {
background-color: #000;
color: #fff;
margin: 0;
padding: 0;
}
#header {
background-color: #000;
padding: 20px;
text-align: center;
}
#header h1 {
margin: 0;
font-size: 24px;
font-family: 'Arial', sans-serif;
color: #fff;
letter-spacing: 2px;
text-transform: uppercase;
}
#header img {
width: 20%;
height: auto;
}
#content {
text-align: center;
padding: 20px;
margin-top: -4%;
}
#content h1 {
font-size: 24px;
cursor:pointer;
text-transform: uppercase;
font-family: 'Open Sans', sans-serif;
line-height: 1.5;
margin-bottom: 20px;
}
#searchbar {
text-align: center;
margin: 20px auto;
}
.form__input {
padding: 10px;
border: none;
border-radius: 5px;
font-size: 16px;
width: 300px;
box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
background-color: #222;
text-align: center;
color: #fff;
cursor:cell;
}
a{
text-decoration: none;
color:white;
width:50px;
height:50px;
padding-right: 1px;
padding-left: 1px;
text-align: center;
align-self: center;
}
.form__input::placeholder {
color: #aaa;
text-align: center;
}
.form_input:hover{
cursor:cell;
}
.form__input:focus {
outline: none;
box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
#footer {
position: fixed;
left: 0;
bottom: 0;
border-top-width: 1px;
border-top-style: solid;
border-top-color: #99ccff;
font-family: 'Open Sans', sans-serif;
width: 100%;
height:15px;
background-color: #000;
padding-top: 7.5px;
padding-bottom: 10px;
text-align: center;
color: #fff;
font-size: 14px;
}
#footer p {
margin: 0;
}
.fa {
font-size: 24px;
margin-right: 10px;
color: #fff;
}
.fa:hover {
color: #aaa;
}