forked from deepspacerobots/code-test-zip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
104 lines (90 loc) · 1.64 KB
/
style.css
File metadata and controls
104 lines (90 loc) · 1.64 KB
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
body {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Helvetica, Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: #83c0ff;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1 {
color: #fff;
font-size: 22px;
}
#searchResults {
color: #FFF;
font-size: 20px;
display: flex;
margin-bottom: 50px;
max-height: 300px;
transition: all 1s;
}
#searchResults.pre-animation {
opacity:0;
max-height: 0;
}
#searchResults > div {
background: #fff;
padding: 20px;
margin-right: 30px;
min-width: 260px;
min-height: 170px;
}
#searchResults p {
color: #000;
font-size: 20px;
margin-bottom: 16px;
border-bottom: solid 1px #ddd;
}
#searchResults p:first-child {
font-weight: bold;
}
img {
width: 200px;
}
#error {
font-size: 13px;
color: #d81515;
margin-bottom: 7px;
margin-right: 79px;
}
.form-container {
width: 100%;
text-align: center;
}
form {
display: flex;
flex-direction: column;
align-items: center;
}
input {
font: 18px Helvetica, Arial, sans-serif;
display: block;
border: none;
padding: 20px;
width: 250px;
margin-bottom: 20px;
font-size: 18px;
outline: none;
}
input#submit {
width: 290px;
transition: background-color 0.2s ease-in-out;
font: 18px Helvetica, Arial, sans-serif;
border: none;
background: #4860a8;
color: #fff;
padding: 16px 40px;
cursor: pointer;
}
input#submit:hover {
background: #3D518C;
}