-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
76 lines (68 loc) · 1.25 KB
/
index.css
File metadata and controls
76 lines (68 loc) · 1.25 KB
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
*{
padding:0;
margin:0;
}
body{
background: url(bg.jpg) no-repeat center center fixed;
background-size: cover;
}
.container{
/* border:12px solid black; */
color:white;
position: absolute;
top:30%;
left: 42%;}
.container h1{
display: inline-block;
width: 50%;
font-size: 40px;
border-bottom:5px solid purple ;
margin-bottom: 15px;
padding: 13px 0px;
}
.box{
width:100%;
/* border:2px solid purple; */
border-bottom: 2px solid purple;
margin: 19px 0;
}
.box input{
width:75%;
outline: none;
border: none;
color: white;
font-size:20px;
margin: 12px 0;
padding: 5px 10px;
background:none ;
}
.box i{
/* padding: 0 12px; */
width: 25px;
text-align: center;
}
.btn{
outline: none;
cursor: pointer;
/* width: 25%; */
margin: 12px 0;
padding: 10px 21px;
border: 2px solid purple ;
border-radius: 10px;
font-size: 18px;
background: none;
color: white;
}
.btn:hover{
color: purple;
outline: none;
cursor: pointer;
/* width: 25%; */
margin: 12px 0;
padding: 10px 21px;
border: 2px solid purple ;
border-radius: 10px;
font-size: 18px;
background:white;
/* color: white; */
}