-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
57 lines (51 loc) · 985 Bytes
/
index.css
File metadata and controls
57 lines (51 loc) · 985 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
*{
margin: 0;
padding: 0;
}
body{
background: url('bg1.jpg')no-repeat center center fixed;
background-size:cover;
opacity: 0.7;
}
.container{
display: flex;
flex-direction: column;
margin-top: 200px;
justify-content: center;
align-items: center;
}
h1{
font-size: 30px;
margin-right: 164px;
opacity: 0.8;
/* border-bottom: 4px solid white; */
}
.box input{
font-size: 20px;
margin: 3px 2px;
padding: 5px 3px;
background:none;
border-radius: 10px;
background-color:black;
color: rgb(229, 192, 192);
width: 250px;
outline: none;
opacity: 0.4;
/* border-bottom: tomato; */
}
.btn{
font-size: 20px;
outline: none;
padding: 3px;
cursor: pointer;
color:rgb(233, 227, 227);
margin-right: 165px;
background-color:black;
/* background: none; */
border-radius: 7px;
/* margin-left: 40px; */
}
.btn:hover{
color:white;
opacity: 0.4;
}