-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
95 lines (83 loc) · 1.61 KB
/
style.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
body{
font-family: 'Baloo Bhai 2', cursive;
color: white;
background: url(gym.jpg) no-repeat ;
background-size: cover;
margin: 0px;
padding: 0px;
}
.left{
/*border: 2px solid red;*/
display: inline-block;
top: 26px;
left: 30px;
position: absolute;
}
.left img{
width: 36px;
filter: invert(100%);
margin: auto;
display: block;
}
.mid{
/*border: 2px solid green;*/
display: block;
width: 40%;
margin: 26px auto;
}
.navbar li{
display: inline-block;
}
.navbar li a {
font-family: 'Baloo Bhai 2', cursive;
color: white;
text-decoration: none;
padding: 10px 5px;
margin: 18px;
}
.navbar li a:hover,.navbar li a:active{
text-decoration: underline;
color: rgb(126, 122, 122);
}
.right{
/*border: 2px solid yellow;*/
display: inline-block;
top: 26px;
right: 23px;
position: absolute;
}
.btn
{
font-family: 'Baloo Bhai', cursive;
color: white;
background-color: black;
border-radius: 10px;
cursor: pointer;
margin: 5px;
transition: 0.5s;
}
.btn:hover{
background-color: gray;
}
.container{
font-family: 'Baloo Bhai', cursive;
border: 2px solid white;
position: absolute;
left: 33px;
border-radius: 10px;
padding: 25px;
margin: 100px;
}
.form-group input{
text-align: center;
display: block;
margin: 8px auto;
border: 2px solid black;
border-radius: 8px;
padding: 2px;
}
.container button{
margin: 10px auto;
display: block;
width: 200px;
}