-
Notifications
You must be signed in to change notification settings - Fork 1
/
style4.css
56 lines (56 loc) · 1.04 KB
/
style4.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
body{
margin:0;
padding: 0;
text-align: center;
background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('bg.gif');
background-position: center;
background-size: cover;
font-family: sans-serif;
}
.c-title{
margin-top: 100px;
color:white;
text-transform: uppercase;
transition: all 4s ease-in-out;
}
h1{
font-size: 50px;
line-height: 10px;
color:white;
margin-top: 40px;
text-decoration-color: aliceblue;
}
h2{
font-size:30px ;
margin-top: 30px;
color:white;
}
form{
margin-top: 50px;
transition: all 1s ease-in-out;
}
.form-control{
width:600px;
background: transparent;
border:none;
outline: none;
border-bottom: 1px solid gray;
color:#fff;
font-size: 18px;
margin-bottom: 16px;
}
input{
height: 45px;
}
form .submit{
background:deepskyblue;
color:black;
font-size: 20px;
font-weight: bold;
letter-spacing: 2px;
height: 50px;
margin-top: 20px;
}
form .submit:hover{
background-color: aqua;
}