-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyless.css
More file actions
56 lines (55 loc) · 948 Bytes
/
styless.css
File metadata and controls
56 lines (55 loc) · 948 Bytes
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
body{
margin:0;
padding:8px;
background-color:#2c3e50;
background-size:cover;
}
.contact-form{
width:85%;
max-width:600px;
background:#81ecec;
position:absolute;
top:55%;
left:50%;
transform: translate(-50%,-50%);
padding: 30px 40px;
box-sizing:border-box;
border-radius: 8px;
text-align:center;
box-shadow: 0 0 20px #000000b3;
}
.contact-form h1{
margin-top:0;
font-weight:200px;
}
.txtb{
border:1px solid gray;
margin:8px 0;
padding:12px 18px;
border-radius: 8px;
}
.txtb label{
display: block;
text-align: left;
color: #333;
text-transform: uppercase;
font-size: 14px;
}
.txtb input,.txtb textarea{
width: 100%;
border: none;
background: none;
outline: none;
font-size: 18px;
margin-top: 6px;
}
.btn{
display: inline-block;
background:#0984e3;
padding:14px 0;
color:white;
text-transform: uppercase;
cursor: pointer;
margin-top: 8px;
width: 100%;
}