-
Notifications
You must be signed in to change notification settings - Fork 382
/
GymLandingPage.css
96 lines (93 loc) · 1.73 KB
/
GymLandingPage.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
/* CSS Reset */
body{
color: white;
margin: 0px;
padding: 0px;
background: url(GymLandingPageImage/bg.jpg);
font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}
.left{
/* border: 2px solid red; */
display: inline-block;
position: absolute;
left: 75px;
top: 20px;
font-weight: 100;
}
.mid{
/* border: 2px solid green; */
display: block;
width: 33%;
margin: 20px auto;
font-weight: bolder;
position: sticky;
top: 0px;
}
.right{
position: absolute;
right: 34px;
top: 20px;
/* border: 2px solid yellow; */
display: inline-block;
}
.navbar{
display: inline-block;
}
.navbar li{
display: inline-block;
font-size: 15px;
}
.navbar li a{
color: white;
text-decoration: none;
padding: 34px 5px;
}
.navbar li a:hover, .navbar li a.active{
text-decoration: underline;
color: grey;
}
.left img{
width: 75px;
filter: invert(100%);
}
.left div{
margin: -1px;
line-height: -2px;
font-size: 16px;
text-align: center;
}
.btn{
margin: 0px 8px;
color: white;
background-color: black;
padding: 4px 7px;
border: 2px solid rgb(200, 196, 196);
border-radius: 5px;
font-size: 15px;
cursor: pointer;
}
.btn:hover{
background-color: rgb(175, 169, 169);
}
.container{
border: 2px solid rgb(235, 235, 235);
margin: 71px 89px;
padding: 38px 86px;
width: 24%;
border-radius: 19px;
}
.form-group input{
text-align: center;
display: block;
width: 90%;
border-radius: 14px;
border: 3px solid black;
margin: 2px auto;
padding: 10px;
font-family: "Trirong", serif;
}
.container button{
display: block;
width: 23%;
margin: auto;
}