Suchleiste CSS wird nicht erkannt.

04.12.2019 10:38
avatar  L.d.R.
#1
L.

Hallo zusammen,

ich habe eine Problem eine richtige Suchleiste für meine Webseite zu nutzen. Ich bin ein kompletter CSS Noob, daher weiß ich nicht genau woran der Fehler liegt.

Meine URL: www.the-essences-of-life.com

Ich füge den HTML Code ein und das CSS in den Header, jedoch reagiert es nicht auf das CSS.

Hier der Code:

1
2
3
4
 
<div class="container">
<input type="text" placeholder="Search...">
<div class="search"></div>
</div>
 



und hier das 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
 
@import url('https://fonts.googleapis.com/css?family=Inconsolata:700');
 
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
 
html, body {
width: 100%;
height: 100%;
}
 
body {
background: #252525;
}
 
.container {
position: absolute;
margin: auto;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 300px;
height: 100px;
.search {
position: absolute;
margin: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 80px;
height: 80px;
background: crimson;
border-radius: 50%;
transition: all 1s;
z-index: 4;
box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.4);
// box-shadow: 0 0 25px 0 crimson;
&:hover {
cursor: pointer;
}
&::before {
content: "";
position: absolute;
margin: auto;
top: 22px;
right: 0;
bottom: 0;
left: 22px;
width: 12px;
height: 2px;
background: white;
transform: rotate(45deg);
transition: all .5s;
}
&::after {
content: "";
position: absolute;
margin: auto;
top: -5px;
right: 0;
bottom: 0;
left: -5px;
width: 25px;
height: 25px;
border-radius: 50%;
border: 2px solid white;
transition: all .5s;
}
}
input {
font-family: 'Inconsolata', monospace;
position: absolute;
margin: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 50px;
height: 50px;
outline: none;
border: none;
// border-bottom: 1px solid rgba(255, 255, 255, 0.2);
background: crimson;
color: white;
text-shadow: 0 0 10px crimson;
padding: 0 80px 0 20px;
border-radius: 30px;
box-shadow: 0 0 25px 0 crimson,
0 20px 25px 0 rgba(0, 0, 0, 0.2);
// box-shadow: inset 0 0 25px 0 rgba(0, 0, 0, 0.5);
transition: all 1s;
opacity: 0;
z-index: 5;
font-weight: bolder;
letter-spacing: 0.1em;
&:hover {
cursor: pointer;
}
&:focus {
width: 300px;
opacity: 1;
cursor: text;
}
&:focus ~ .search {
right: -250px;
background: #151515;
z-index: 6;
&::before {
top: 0;
left: 0;
width: 25px;
}
&::after {
top: 0;
left: 0;
width: 25px;
height: 2px;
border: none;
background: white;
border-radius: 0%;
transform: rotate(-45deg);
}
}
&::placeholder {
color: white;
opacity: 0.5;
font-weight: bolder;
}
}
}
 
 



Würd mich über jede Hilfe freuen.

Gruß,

Ludwig


 Antworten

 Beitrag melden
04.12.2019 12:06
avatar  az_
#2
avatar
az_

...hast Du denn Jimdo Business? ohne klappt das nicht wirklich.

LG, az


Achtung: Code im Forum bitte am besten mit der Schaltfläche für "Code" einkapseln!!! (= ) , oder den Code in Formatierungs-Klammern setzen (...zwischen "code" und "/code", jeweils in eckigen Klammern).

Achtung! Im neuen Layout ist die Formatierungsleiste versteckt! Klick auf das Smiley rechts oben über dem Text-Editorfenster, um die Formatierungssymbole einzublenden!


...und zuletzt: Bitte sendet mir keine privaten Nachrichten über das Forum! Bitte Nachrichten an mich nur per e-mail oder über das Kontaktformular auf meiner Webseite https://redesign-berlin.de

Wenn Ihr mich sucht, hier findet Ihr mich:
https://www.facebook.com/redesign.berlin
https://redesign-berlin.de
mailto:info@redesign-berlin.de


Spenden: Hier könnt Ihr unser Userforum finanziell unterstützen: page-644478-1.html


 Antworten

 Beitrag melden
04.12.2019 13:40
avatar  L.d.R.
#3
L.

Vielen vielen Dank.

Ich hätte mir sowas denken können :/


 Antworten

 Beitrag melden
Bereits Mitglied?
Jetzt anmelden!
Mitglied werden?
Jetzt registrieren!