-
Notifications
You must be signed in to change notification settings - Fork 0
/
app_style.css
74 lines (64 loc) · 1.29 KB
/
app_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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
input{
width: 48%;
height: 45px;
border-radius: 5px;
margin: 10px 0px;
border: 1px solid rgb(201, 201, 201);
outline: none;
padding: 10px;
font-size: 15px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
button{
height: 45px;
width: 48%;
background-color: var(--mcolor);
border: none;
color: #ffffff;
font-size: 17px;
border-radius: 5px;
cursor: pointer;
outline: none;
}
.button_wrapper , .input_wrapper , .result{
display: flex;
justify-content: space-between;
}
.input_wrapper{
margin-bottom: 10px;
}
.button_wrapper{
margin-bottom: 20px;
}
.result{
padding-bottom: 25px;
}
.result ul{
width: 48%;
height: auto;
border-radius: 5px;
padding: 10px;
background-color: var(--white);
list-style: none;
background-color: var(--white);
}
.result ul h3{
color: #222222;
text-transform: capitalize;
font-weight: 550;
text-align: center;
margin-bottom: 10px;
font-size: 17px;
display: none;
}
.result ul li{
display: inline-block;
border: 2px solid var(--mcolor);
margin: 3px;
padding: 5px;
border-radius: 50%;
}