-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.css
107 lines (102 loc) · 1.98 KB
/
index.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
98
99
100
101
102
103
104
105
106
107
*{
margin: 0;
padding: 0;
}
body{
background: url('./index_images/bgimg1.jpg') no-repeat center center fixed;
background-size: cover;
align-items: center;
justify-content: center;
}
.container{
color: black;
position: absolute;
top: 15%;
left: 35%;
height: 500px;
width: 410px;
/* background:url('./bgimg.jpg'); */
border-radius: 34px;
background-color: rgba(41, 39, 39, 0.3);
}
.container h1{
font-family: 'Heebo', sans-serif;
width: 50%;
display: inline-block;
font-size: 40px;
/* border-bottom: 5px solid purple; */
margin-bottom: 15px;
padding: 13px 0;
align-items: center;
justify-content: center;
margin-left: 120px;
}
.box{
width: 100%;
margin: 24px 0px;
border-bottom: 2px solid purple;
color: black;
align-items: center;
justify-content: center;
}
.box input{
background: none;
width: 75%;
padding: 5px 10px;
font-size: 20px;
border: none;
outline:none;
color: black;
}
::placeholder{
color: black;
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
}
.btn{
color: black;
cursor: pointer;
outline: none;
margin: 12px 0;
padding: 10px 21px;
border: 3px solid purple;
border-radius: 50px;
font-size: 18px;
background: none;
font-weight: bold;
background-color: rgba(245, 245, 245, 0.384);
margin-left: 20px;
width: 88%;
height: 50px;
text-align: center;
justify-content: center;
}
.box i{
width: 25px;
text-align: center;
}
.btn:hover{
opacity: 0.5;
color: purple;
background: white;
}
.icons {
color: whitesmoke;
align-items: center;
margin-left: 78px;
margin-right: 28px;
font-size: 14px;
margin-top: 5px;
margin-bottom: 45px;
}
.logo{
margin-top: 20px;
margin-left: 58px;
margin-right: 35px;
}
.icons h2{
margin-left: 50px;
}
input:focus::placeholder {
color: transparent;
}