-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.css
157 lines (115 loc) · 2.65 KB
/
styles.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
@import url('https://fonts.googleapis.com/css?family=Space+Mono:400,700&display=swap');
*{
box-sizing: border-box;
font-family: inherit;
}
body{
font-family: "Space Mono", monospace;
}
#website_name {
font-weight: bold;
font-size: 38px;
text-align: left;
margin-top: 40px;
line-height: 1.2em;
}
#website_purpose_div {
/* margin: 0px 30px 0px; */
padding: 20px;
/* border: 1px black solid; */
/* box-shadow: 4px 4px 10px gray; */
margin-bottom: 15px;
line-height: 1.3em;
}
#website_purpose {
font-size: 16px;
color: #808080;
}
#search_bar, #name_bar {
font-size: 18px;
/* font-style: italic; */
width: 100%;
padding: 15px 20px;
border: 1px black solid;
border-radius: 15px;
box-shadow: 4px 4px 10px gray;
border-radius: 20px;
box-shadow: 0 2px 5px rgba(0,0,0,.08);
border: solid 1px rgba(0,0,0,.08);
position: relative;
z-index: 99;
}
#search_bar:hover{
border: solid 1px rgba(0,0,0,.1);
box-shadow: 0 5px 10px rgba(0,0,0,.1);
}
#search_button {
/* font-size: 390%; */
font-size: 18px;
/* margin: 50px 10px 0px; */
/* padding: 20px 40px 27px; */
padding: 10px 30px;
border: 2px black solid;
/* border-radius: 500px; */
/* box-shadow: 4px 4px 10px gray; */
background-color: white;
padding: 12px 40px;
background: #FAFAFA;
color: rgba(0,0,0,.8);
border: solid 1px rgba(0,0,0,.08);
border-radius: 10px;
outline: none;
font-size: 18px;
cursor: pointer;
box-shadow: 0 8px 5px rgba(0,0,0,.1);
margin-top: 15px;
}
#nothing_found_div {
margin: 50px 30px 0px;
border: 2px black solid;
box-shadow: 4px 4px 10px gray;
}
#nothing_found {
font-size: 380%;
}
#search_button:active, #download_button:active {
background-color: lightgray;
}
#display_area {
margin: 50px 40px 0px;
padding: 15px 0px;
border: 2px black solid;
box-shadow: 4px 4px 10px gray;
}
#download_button {
/* font-size: 390%; */
/*font-size: 18px;*/
/* margin: 50px 10px 0px; */
/* padding: 20px 40px 27px; */
padding: 10px 30px;
border: 2px black solid;
/* border-radius: 500px; */
/* box-shadow: 4px 4px 10px gray; */
background-color: white;
padding: 12px 40px;
background: white;
color: black;
border: solid 1px rgba(0,0,0,.2);
border-radius: 10px;
outline: none;
font-size: 18px;
cursor: pointer;
box-shadow: 0 8px 5px rgba(0,0,0,.1);
margin-top: 40px;
margin-bottom: 80px;
}
:focus {
outline: none;
}
html {
scroll-behavior: smooth;
}
.container{
max-width: 450px;
margin: auto;
}