-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
52 lines (52 loc) · 856 Bytes
/
style.css
File metadata and controls
52 lines (52 loc) · 856 Bytes
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
*{
margin:0;
padding:0;
box-sizing: border-box;
}
body{
height:100vh;
display:flex;
justify-content: center;
flex-direction: column;
align-items: center;
background: linear-gradient(rgb(47,150,163),rgb(48,62,143));
font-family: monospace;
color:#fff;
}
header h1{
text-align: center;
}
.search-bar{
line-height: 50px;
}
#inputText{
padding:5px 5px;
}
#btn{
padding:5px;
border-radius: 20px;
color:#000;
background-color:#a6a6a6;
cursor:pointer;
text-decoration: none;
}
#btn:hover{
background-color:beige;
}
.place{
margin-top: 70px;
font-size: 30px;
}
.degree-section{
display: flex;
align-items: center;
}
.degree-section span{
line-height: 50px;
margin:2px;
font-size: 25px;
cursor: pointer;
}
.degree-section h2{
font-size: 30px;
}