-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
90 lines (88 loc) · 1.66 KB
/
styles.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
body{
margin: 0;
padding: 0;
width: 100%;
height: 100vh;
overflow: hidden;
position: relative;
background-size: cover;
}
.logo{
position: absolute;
top: 10px;
right: 60px;
}
.box{
width: 500px;
height: 400px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
/* border: 1px solid #303030; */
box-shadow: 5px 20px 1000px #000;
border-radius: 20px;
}
.top{
width: 100%;
height: 80px;
background: #444444;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
}
.top h1{
color: #eeeeee;
margin: 0;
font-size: 30px;
text-align: center;
/* padding-left: 20px; */
padding-top: 20px;
font-family: monospace;
}
.mid{
width: 100%;
height: 260px;
/* margin-top: -18px; */
}
.mid .chat{
width: 100%;
/* padding-top: 0px; */
}
.mid .chat h2{
margin: 0;
font-size: 20px;
color: #ffffff;
font-family: monospace;
padding: 30px 10px;
}
.mid .chat p{
margin: 0;
height: 73px;
font-size: 18px;
font-weight: 600;
color: #fff;
padding: 5px 10px;
-webkit-text-stroke: 0.1px black;
letter-spacing: 0.04em;
font-family: monospace;
}
.input{
width: 100%;
height: 85px;
overflow: hidden;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
/* background: #090e11; */
}
.input input{
width: 100%;
height: 87px;
font-size: 30px;
outline: none;
border: none;
padding-left: 20px;
padding-bottom: 0px;
font-family: monospace;
background: #444444;
color: #fff;
}