-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
59 lines (52 loc) · 831 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
50
51
52
53
54
55
56
57
58
59
* {
margin: 0;
padding: 0;
font-family: "Lucida Sans", sans-serif;
box-sizing: border-box;
}
.container {
height: 100vh;
width: 100%;
background: #201f21;
display: flex;
align-items: center;
justify-content: center;
}
.input-box {
width: 400px;
max-width: 90%;
position: relative;
}
.input-box input {
width: 100%;
height: 60px;
padding: 0 20px;
border: 1px solid #ccc;
outline: none;
color: #fff;
background: transparent;
}
button {
background: transparent;
border: 0;
outline: none;
border-radius: 50%;
cursor: pointer;
position: absolute;
top: 50%;
transform: translateY(-50%);
right: 15px;
}
button img {
width: 35px;
}
#message {
position: absolute;
bottom: -30px;
color: #fff;
font-size: 15px;
display: none;
}
::placeholder {
font-size: 15px;
}