-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyling.css
65 lines (57 loc) · 1.05 KB
/
styling.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
body {
background-color: #f1ebeb;
font-family: sans-serif;
background-image: -webkit-image-set();
}
.comment-box {
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 2px 5px rgba(3, 242, 250, 0.877);
margin: 40px auto;
width: 600px;
}
h2 {
text-align: center;
margin-bottom: 20px;
}
.form-group {
margin-bottom: 15px;
}
label {
display: block;
margin-bottom: 5px;
}
input[type="text"],
input[type="email"],
textarea {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
}
textarea {
resize: none;
}
button[type="submit"] {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
#me{
align-items: first baseline;
display: block;
margin: 20px auto;
padding: 10px 20px;
background-color: #555;
color: white;
border: none;
cursor: pointer;
}
#me:hover {
background-color: chartreuse;
}