-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
122 lines (108 loc) · 2.23 KB
/
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: "Nunito Sans", sans-serif;
}
body {
background-color: rgba(238, 238, 237, 0.575);
text-align: center;
}
.min-container p.description {
margin-top: 20px;
text-align: justify;
font-size: 14px;
padding: 20px 20px;
border: 1px solid rgb(241, 239, 239);
border-radius: 7px;
background: white;
}
.min-container h1.app-title {
font-size: 50px;
text-transform: uppercase;
}
.min-container {
width: 800px;
margin: 50px auto 0 auto;
padding: 20px;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
border-radius: 5px;
}
.error {
width: 800px;
margin: 10px auto 0 auto;
padding: 20px;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
border-radius: 5px;
color: red;
font-weight: bold;
display: none;
}
.search {
box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
padding: 20px;
border-radius: 5px;
margin-top: 20px;
display: flex;
justify-content: space-between;
}
.input {
flex: 6;
padding: 10px;
border: 1px solid rgb(221, 220, 220);
border-radius: 5px;
}
.button {
flex: 2;
padding: 10px;
margin-left: 10px;
height: 100%;
border: 1px solid darkblue;
border-radius: 5px;
background-color: darkblue;
color: white;
font-weight: bold;
}
#result-message {
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
padding: 20px;
width: 800px;
margin: 20px auto 0 auto;
background: white;
border-radius: 5px;
display: none;
justify-content: space-between;
color: rgb(78, 78, 78);
}
.result {
padding: 20px;
text-align: center;
background-color: rgba(238, 238, 237, 0.575);
margin: 0 5px;
flex: 1;
box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
border-radius: 10px;
}
.result h3 {
margin-bottom: 15px;
}
.result p {
padding: 10px;
box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
margin: 5px 0;
border-radius: 5px;
background-color: rgba(255, 255, 255, 0.575);
}
.result:hover {
box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
transition: all 1s ease-in-out;
}
img {
border-radius: 50%;
padding: 5px;
margin-top: 5px;
box-shadow: rgba(138, 137, 137, 0.35) 0px 5px 15px;
}