-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (49 loc) · 1.02 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
body {
background: url("https://www.publicdomainpictures.net/pictures/20000/velka/fog-in-the-forest-1318089061Cho.jpg");
background-color: #270722;
background-size: cover;
}
.container {
margin: auto;
}
.container > div {
background-color: #E7BB41;
text-align: center;
border: 2px solid black;
border-radius: 10px;
}
.container > div > a {
color: #050505;
}
.search {
width: 70%;
height: 50px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
margin: auto;
}
.search > input {
color: #050505;
background-color: ##E0FBFC;
border: 2px solid black;
border-radius: 15px;
}
.search > button {
color: #050505;
border: 2px solid black;
border-radius: 15px;
background-color: #E0FBFC;
cursor: pointer;
}
.container > div:after {
display: none;
text-align: center;
content: attr(data-text);
position: abosolute;
background-color: #F34213;
}
.container:hover > div:after {
display: block;
}