-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
90 lines (81 loc) · 1.24 KB
/
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
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
*{
margin: 0;
padding: 0;
}
.container{
display: block;
width: 800px;
height: 700px;
margin: auto;
background-color: rgb(59, 255, 59);
align-items: center;
}
.section{
display: flex;
text-align: center;
align-items: center;
margin: auto;
padding: 20px;
}
ul{
display: flex;
padding: 15px;
justify-content: right;
}
li{
padding: 20px;
/* width: 15px;
height: 10px; */
border-radius: 4px ;
list-style: none;
background-color: aliceblue;
}
img{
padding: 15px;
height: 80px;
width: 80px;
border-radius: 10px;
}
h2{
font-size: 50px;
font-weight: 50px;
}
.contact{
width: auto;
height: 500px;
background-color: aliceblue;
display: block;
margin: auto;
overflow-y: scroll;
}
.message{
width: 50%;
height: 20px;
padding: 20px 30px ;
background-color: blue;
margin-top: 10px;
margin-bottom: 10px;
border-radius: 4px;
}
.left{
float: left;
}
.right{
float: right;
}
.submit{
text-align: center;
display: block;
margin: auto;
}
input{
width: 600px;
padding: 15px;
border-radius: 4px;
}
button{
width: 80px;
height: 40px;
background-color: red;
color: wheat;
}