-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
72 lines (60 loc) · 1.14 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
/* style.css */
.navbar-logo {
width: 105px;
height: 105px;
margin-right: 10px;
margin-bottom: -30px
}
.contact-form {
background-color: #f2f2f2;
padding: 20px;
border-radius: 10px;
}
.contact-form label {
color: black;
}
.contact-form .heading {
font-size: 24px;
color: black;
;
margin-bottom: 12px;
font-weight: bold;
display: block;
}
.contact-form form {
display: flex;
flex-direction: column;
}
.contact-form label {
margin-bottom: 10px;
}
textarea {
resize: none;
height: 80px;
width: 200px;
}
.contact-form input, .contact-form textarea {
padding: 10px;
border: none;
border-radius: 5px;
margin-bottom: 10px;
}
.contact-form input:focus, .contact-form textarea:focus {
outline: none;
box-shadow: 0 0 5px #ff6384;
transform: scale(1.05);
transition: transform 0.3s ease-in-out;
}
.contact-form button[type="submit"] {
background-color: #ff6384;
color: #fff;
border: none;
border-radius: 5px;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
.contact-form button[type="submit"]:hover {
transform: scale(1.1);
transition: transform 0.3s ease-in-out;
}