-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
76 lines (73 loc) · 1.37 KB
/
style.css
File metadata and controls
76 lines (73 loc) · 1.37 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
64
65
66
67
68
69
70
71
72
73
74
*{
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-weight: 600;
}
body{
height: 100vh;
width: 100%;
background-image: radial-gradient(circle, #44a4a4, #0097b3, #0087c1, #0072c5, #5e55b7);
}
.navbar{
display: flex;
justify-content: space-around;
align-items: center;
list-style: none;
height: 60px;
width:100%;
background-color: white;
position: sticky;
top: 0;
backdrop-filter: blur(10px);
box-shadow: 0px 0px 4px rgba(14,19,24,.07);
}
.logo > img{
width: 212px;
height: 21px;
}
.menu{
display: inline-flex;
justify-content: space-between;
width: 149px;
}
.content{
display: grid;
grid-template-columns: auto;
justify-content: center;
position: absolute;
top: 200px;
width: 80%;
left: 125px;
}
input{
height: 35px;
padding: 9px;
margin: 5px;
border-radius: 10px;
border: none;
}
button{
color: #0072c5;
background-color: #fdfdfd;
border: none;
height: 46px;
border-radius: 10px;
margin: 5px;
cursor: pointer;
font-size: 20px;
}
button:hover{
color: #ffffff;
background-color: #26c09a;
border: none;
height: 46px;
border-radius: 10px;
margin: 5px;
}
h1{
text-align: center;
font-size: 2rem;
padding: 10px;
}