-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (55 loc) · 1.08 KB
/
style.css
File metadata and controls
63 lines (55 loc) · 1.08 KB
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
/**
* Highlight Searched Text CSS File
* author(Joshua Thomas)
* date(12.01.2022)
* version:1.0
*/
body{
width:50px;
height:100px;
background: linear-gradient(
to right,
#ffffff 0%,
#ffffff 50%,
#000000 50%,
#000000 100%
);
}
.selected{
background-color:#FFFF00;
transition:1.5s;
}
.container{
width:320px;
height:350px;
margin:130px 519px;
background-color:#FFFAFA;
border-radius:20px;
border: 3px solid black;
font-family: Tahoma, sans-serif;
font-size:14px;
text-align:center;
}
.search-box{
margin: 0px 20px auto;
border-top-style: hidden;
border-left-style: hidden;
border-right-style: hidden;
outline:none;
font-size:15px;
background-color: transparent;
}
.search-btn{
margin:25px 3px auto;
font-family: Tahoma, sans-serif;
font-size:20px;
background-color:black;
color:white;
border-radius:3px;
}
.search-btn:hover{
cursor:pointer;
opacity:85%;
}
@media screen and (max-width:920px){
}