-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
49 lines (45 loc) · 898 Bytes
/
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
* {
padding: 0;
margin: 0;
font-family: Verdana, Geneva, Tahoma, sans-serif;
box-sizing: border-box;
}
main {
width: 100%;
height: 100vh;
background-color: #f5c31f;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.row {
display: flex;
align-items: center;
/* vertically */
justify-content: center;
/* horizontally */
width: 500px;
margin: 10px;
font-size: 40px;
color: white;
}
#search {
text-align: center;
font-size: 25px;
padding: 10px;
border-radius: 25px;
border-style: solid;
border-width: 2px;
box-shadow: 0px 0px 5px grey;
}
.container{
box-sizing: border-box;
margin: 100px;
padding-left: 80px;
padding-top: 20px;
padding-right: 80px;
padding-bottom: 40px;
border-style: double;
border-color: aliceblue;
}