-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
89 lines (87 loc) · 1.63 KB
/
main.css
File metadata and controls
89 lines (87 loc) · 1.63 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
77
78
79
80
81
82
83
84
85
86
87
88
89
body{
margin: 0px;
padding: 0px;
background: url("anti.jpg");
color: white;
font-family: 'Baloo Bhai', cursive;
}
.left{
/*border: 2px solid blue;*/
position: absolute;
left: 30px;
top:20px;
display: inline-block;
}
.left img{
width: 136px;
filter: invert(85%);
}
.left div{
text-align: center;
line-height: 19px;
font-size: 18px;
}
.mid{
/* border: 2px solid green;*/
display: block;
width: 43%;
margin: 20px auto;
}
.right{
position: absolute;
right: 30px;
top:20px;
display: inline-block;
/*border: 2px solid yellow;*/
}
.navbar{
display: inline-block;
}
.navbar li{
display: inline-block;
font-size: 18px;
}
.navbar li a{
color: white;
text-decoration: none;
padding: 15px 20px;
}
.navbar li a:hover,.navbar li a.active{
text-decoration: underline;
color: grey;
}
.btn{
background-color:black;
color: white;
margin: 0px 9px;
padding: 3px 14px;
/*border: 2px solid grey;*/
border-radius: 10px;
font-size: 20px;
cursor: pointer;
font-family: 'Baloo Bhai', cursive;
}
.btn:hover{
background-color: rgb(31,30,30);
}
.container{
/* border: 2px solid white;*/
margin: 170px 81px;
padding: 75px 75px;
width: 21%;
border-radius: 14px;
}
.form-group input{
text-align: center;
display: block;
width: 260px;
padding: 11px;
/*border: 2px solid black;*/
margin: 12px auto;
font-size: 15px;
border-radius: 15px;
font-family: 'Baloo Bhai', cursive;
}
#submit-btn{
width: 95px;
}