-
Notifications
You must be signed in to change notification settings - Fork 0
/
styleeeeee.css
97 lines (82 loc) · 2.22 KB
/
styleeeeee.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
91
92
93
94
95
96
97
/* __________________contact us_______________________ */
body {
background-image: url("tt.jpg");
background-size: cover;
background-repeat: no-repeat;
background-position: center;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
.contact-form {
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
border-radius: 10px;
padding: 5px;
width: 400px;
box-shadow: 2px 2px 10px;
}
.contact-form h2 {
text-align: center;
color: #ccc;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
font-weight: bold;
font-size: 22px;
margin-bottom: 5px;
color: #ccc;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea, .form-group input[type="text"] {
width: 90%;
padding: 10px;
/* border: 1px solid transparent; */
border-radius: 7px;
list-style: none;
color: transparent;
outline: none;
}
#name, #email, #message, #Mobile{
background-color: rgba(128, 128, 128, 0.215);
backdrop-filter: blur;
border: .5px solid gray;
color: #ffffff;
font-size: 18px;
}
#name:hover, #email:hover, #message:hover, #Mobile:hover{
background-color: transparent;
}
.form-group button {
background-color: #007BFF;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 5px;
font-size: 32px;
font-weight: 500;
letter-spacing: 3px;
width: 100%;
cursor: pointer;
transition: 0.4s ease-in-out;
}
.form-group button:hover {
background-color: #ffffffff;
color: #007BFF;
transform: scaleX(1.01);
}
.success-message {
text-align: center;
color: #1a1667;
display: none;
margin-top: 10px;
font-size: 28PX;
letter-spacing: 1px;
}