-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
70 lines (57 loc) · 808 Bytes
/
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
body {
overflow-x: hidden;
height: 100%;
}
.top,
.bottom {
background-color: #75DBCE;
min-height: 2.5rem;
width: 100%;
position: relative;
}
.wrapper {
height: 100%;
width: 100%;
position: absolute;
text-align: center;
}
.wrapper input {
width: 5rem;
}
/* .top {
top: 0;
}
.bottom {
bottom: 0;
} */
.top input,
.bottom input {
display: inline-block;
float: left;
margin-right: 3rem;
}
.message {
background-color: #B6D7E4;
min-height: 55rem;
width: 100%;
/* position: absolute; */
}
.input-wrapper input {
width: 95%;
/* margin-right: 1rem;
margin-left: 1rem; */
float: right;
}
.input-wrapper {
}
#alert {
font-size: 20px;
color: red;
display: none;
}
#message {
display: block;
width: 99.6%;
min-height: 50rem;
margin-top: 2rem;
}