-
Notifications
You must be signed in to change notification settings - Fork 2
/
tracker_style.css
137 lines (110 loc) · 1.82 KB
/
tracker_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
131
132
133
134
135
136
137
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body {
color: #5a5a5a;
background-color: rgb(15, 1, 8);
overflow-x: hidden;
}
input {
width: 30%;
}
label {
color: rgb(245, 210, 210);;
font-size: 2.3rem;
text-align: left;
text-shadow: 1px 1px 5px rgb(252, 51, 68);
width: 20rem;
font-family: cursive;
}
html {
overflow-x: hidden;
scroll-behavior: smooth;
}
p {
color: #d4daf5;
font-size: 1.2rem;
text-align: center;
text-shadow: 1px 1px 5px rgb(22, 85, 100);
}
li {
color: #becbdd;
font-size: 1rem;
}
a {
color: white;
}
a:hover {
color: yellow;
text-decoration: none;
}
.button {
margin: auto;
max-width: 65%;
height: 35px;
font-family: cursive;
font-size: 20px;
font-weight: 200;
}
.hero {
display: block;
padding-bottom: 100px;
height:auto;
width: 100%;
}
.section-heading {
font-size: 3.8em;
margin-top: 3rem;
margin-bottom: 1rem;
text-align: center;
color: rgb(245, 210, 210);
text-shadow: 3px 3px 10px rgb(252, 51, 68);
}
.section-subheading {
color: rgb(245, 210, 210);
font-size: 3em;
margin-top: 2rem;
margin-bottom: 2rem;
text-align: center;
text-shadow: 3px 3px 10px rgb(252, 51, 68);
}
.section-description {
margin-bottom: 3rem;
text-align: center;
}
.section-divider {
margin: 2rem auto;
opacity: 0.75;
text-align: center;
}
.subsection-heading {
color: rgb(245, 210, 210);
font-size: 2rem;
margin-bottom: 2rem;
text-align: center;
text-shadow: 3px 3px 10px rgb(252, 51, 68);
}
.textfield {
margin: auto;
width: 70%;
height: 35px;
}
#query-form {
margin: auto;
max-width: 85%;
}
.results-div{
color: rgb(209, 209, 13);
background-color: rgb(153, 4, 12);
}
@media only screen and (max-width: 767px) {
.button {
max-width: 100%;
}
.textfield {
margin: auto;
width: 90%;
}
}