-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
executable file
·114 lines (110 loc) · 2.39 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
104
105
106
107
108
109
110
111
112
113
114
body{
display: flex;
flex-direction: column;
position: relative;
background-color: rgb(206, 211, 211);
margin: 0;
align-items: center;
}
.bar{
display: flex;
position: fixed;
width: 100%;
height: 3em;
align-items:flex-end;
background-color: rgb(0, 0, 0, 0.1);
justify-content: flex-end;
}
.imagesearch{
text-decoration: none;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
margin: 1em;
margin-left: 0.5em;
}
.advancesearch{
text-decoration: none;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
margin: 1em;
margin-left: 0.5em;
margin-top: 0
;
}
.image{
display:contents;
width: 5em;
}
.picsearch {
/* height: 5em; */
/* width: 5em; */
margin-bottom: 0;
margin-top: 10rem;
}
.textpicsearch{
margin: 0;
margin-bottom: 3em;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 1em;
text-wrap: nowrap;
}
.gsearch{
display: flex;
flex-wrap: wrap;
justify-content: center;
flex-direction: column;
align-items: center;
}
.advgsearch{
display: flex;
flex-wrap: wrap;
flex-direction: column;
align-items: end;
}
.container{
display: flexbox;
flex-wrap: wrap;
justify-content: center;
}
.filds{
display: flex;
align-items: center;
}
.fildtext{
min-width: 16em;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
.searchfild{
display: block;
background-color: white;
min-height: 2em;
min-width: 20em;
border: solid white 0.4em;
margin: 1em;
border-radius: 20px;
}
.advsearchfild{
display: block;
background-color: white;
min-height: 2em;
min-width: 20em;
border: solid white 0.4em;
margin: 0;
border-radius: 4px;
}
.searchbutton{
/* display: block; */
color: white;
max-width: 10em;
background-color: #008cff;
font-size: 0.8em;
border: solid #008cff 0.4em;
border-radius: 20px;
}
.advsearchbutton{
display: block;
color: white;
max-width: 8em;
background-color: #008cff;
font-size: 0.8em;
border: solid #008cff 0.4em;
border-radius: 4px;
}