-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
96 lines (89 loc) · 1.5 KB
/
main.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
87
88
89
90
91
92
93
94
95
96
@import url('https://fonts.googleapis.com/css2?family=Poller+One&family=Stick+No+Bills:wght@200;300;400&display=swap');
*{
margin: 0;
box-sizing: border-box;
}
body{
font-family: 'Stick No Bills', sans-serif;
}
ul{
margin: 0 0 20px 0;
padding: 0;
}
li{
margin-bottom: 5px;
padding: 0;
width: 100%;
cursor: pointer;
list-style: none;
font-weight: bold;
}
.app-wrapper{
background: url(./img/yoda.jpg)no-repeat;
background-size: cover;
}
.app-container {
padding: 0 20px;
display: flex;
align-items: center;
height: 100vh;
}
.content {
margin: auto;
padding: 20px 20px;
max-width: 320px;
max-height: 100vh;
background: rgba(255, 255, 255, 0.575);
overflow: auto;
border-radius: 10px;
}
.search {
}
select{
margin-bottom: 10px;
}
.search_form {
margin-bottom: 20px;
}
.person_search {
margin: 0 auto;
margin-bottom: 10px;
display: block;
width: 100%;
height: 30px;
border: none;
border-radius: 3px;
outline: none;
}
.button {
background: #fff;
border: none;
width: 100%;
height: 30px;
border-radius: 3px;
box-shadow: 0px 1px 1px 0 rgba(0, 0, 0, 0.452);
cursor: pointer;
}
.search_result {
}
.person_data div{
margin-bottom: 10px;
}
.error{
display: block;
text-align: center;
margin: 0 auto;
background-color: rgb(119, 0, 0);
color: rgb(255, 255, 255);
font-weight: bold;
font-size: 12px;
}
@media (max-width:1024px) {
.app-wrapper{
background-position-x: -380px;
}
}
@media (max-width:768px) {
}
@media (max-width:480px) {
}