-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessgage.css
71 lines (63 loc) · 1.2 KB
/
messgage.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
*{
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
box-sizing: border-box;
}
/* container ko style karaga */
.container{
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: #555;
color: white;
}
.message-box{
background-color: aliceblue;
color: black;
height: 400px;
width: 400px;
}
.message-box h1{
font-size: 30px;
margin-left: 15vh;
margin-top: 40px;
color: aqua;
}
.input-field{
/* background-color: #eaeaea; */
border-radius: 10px;
display: flex;
align-items:center ;
}
.input-box{
padding: 10px;
margin-top: 10px;
padding-left: 40px;
}
.input-box input{
height: 40px;
border-radius: 10px;
width: 300px;
font-size: 16px;
border: 0;
outline: 0;
padding-left: 30px;
}
.sumbit-btn{
display: flex;
justify-content: center;
margin-top: 30px;
}
button{
height: 40px;
width: 80px;
border-radius: 10px;
border: 0;
outline: 0;
background-color: green;
font-size: 20px;
color: white;
}