-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
86 lines (86 loc) · 1.71 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
body {
margin: 0%;
padding-top: 100px;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
background-image: linear-gradient(
rgba(250, 137, 122, 0.411),
rgb(226, 147, 147)
);
background-attachment: fixed;
}
#searchbar {
width: 700px;
border-radius: 8px;
padding-left: 10px;
border: 2px rgb(221, 164, 164) solid;
height: 50px;
display: flex;
margin: auto;
margin-top: 48px;
margin-bottom: 175px;
background: #00000000;
color: rgb(109, 83, 83);
font-size: 16px;
}
.topbar{
border-radius: 10px;
background-color: rgba(48, 47, 47, 0.562);
backdrop-filter: blur(2px);
height: 50;
text-justify: center;
margin-top: 20;
padding-left: 5;
padding-right: 5;
padding-top: 20;
position: fixed;
top: 0%;
width: 98%;
left: 2px;
right: 2px;
z-index: 100;
font-weight: bolder;
align-self: center;
margin: auto;
margin-top: 10px;
}
a{
text-decoration: none;
color: black;
}
nav{
float:right;
}
.wrapper{
border-radius: 10px;
background-color: rgba(48, 47, 47, 0.562);
backdrop-filter: blur(0px);
height: 70px;
text-justify: center;
padding-left: 5;
padding-right: 5;
padding-top: 20;
text-align: center;
width: 700px;;
left: 2px;
right: 2px;
z-index: 100;
font-weight: bolder;
align-self: center;
margin: auto;
margin-top: 50px;
}
.wrapper:hover{
text-decoration: underline;
cursor: pointer;
}
@media only screen and (max-width: 600px) {
.topbar {
width: 90%;
}
#searchbar {
width: 90%;
}
.wrapper {
width: 80%;
}
}