-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
113 lines (96 loc) · 1.8 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaina+2&display=swap');
body {
font-family: 'Baloo Bhaina 2', cursive;
margin: 0;
padding: 0;
background: url('image/img.jpg');
color: white;
}
.left {
/*border: 2px solid red;*/
display: inline-block;
position: absolute;
left: 60px;
top: 20px;
}
.left img {
width: 100px;
}
.left div {
text-align: center;
line-height: 3px;
font-size: 19px
}
.mid {
/*border: 2px solid yellow;*/
display: block;
width: 33%;
margin: 20px auto;
}
.navbar {
display: inline-block;
}
.navbar li {
display: inline-block;
color: white;
}
.navbar li a {
color: white;
text-decoration: none;
padding: 32px 18px;
font-size: 19px;
}
.navbar li a:hover,
.navbar li a:active {
text-decoration: underline;
color: grey;
}
.right {
/*border: 2px solid green;*/
display: inline-block;
position: absolute;
right: 34px;
top: 20px;
}
.btn {
margin: 0px 9px;
padding: -1px 15px;
background-color: black;
color: white;
border: 2px solid grey;
border-radius: 6px;
font-size: 19px;
cursor: pointer;
font-family: 'Baloo Bhaina 2', cursive;
}
.btn:hover {
background-color: rgb(66, 59, 59);
}
.container {
border: 2px solid white;
margin: 218px 106px;
padding: 33px 69px;
width: 27%;
border-radius: 17px;
position: absolute;
right: -85px;
}
.form-group input {
text-align: center;
display: block;
width: 400px;
padding: 3px;
border: 2px solid black;
margin: 15px auto;
font-size: 23px;
border-radius: 7px;
font-family: 'Baloo Bhaina 2', cursive;
}
.container button {
display: block;
width: 400px;
margin: 20px auto;
}
.container h1 {
text-align: center;
}