-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (52 loc) · 1.11 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
* {
box-sizing: border-box;
}
body {
background-color: black;
color: whitesmoke;
padding: 0;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
height: 100vh;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 2rem;
overflow-x: hidden;
background: url('./images/star-optimized.jpg') no-repeat center center;
background-size: cover;
}
.search-bar {
text-align: center;
padding: 1rem;
font-size: 2rem;
background-color: transparent;
border: none;
margin-bottom: 1rem;
outline: none;
color: rgb(46, 46, 46);
color: white;
width: auto;
display: block;
}
.search-btn {
display: block;
margin: auto;
padding: 0.5rem 1.4rem;
cursor: pointer;
background-color: royalblue;
border: none;
border-radius: 4px;
color: white;
font-size: 1.1rem;
border-bottom: 3px solid rgb(230, 228, 228);
}
.m-heading {
padding-top: 5rem;
font-size: 1.5rem;
text-align: center;
color: rgba(96, 107, 106, 0.776);
font-variant: small-caps;
}