-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
121 lines (103 loc) · 2.41 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
114
115
116
117
118
119
120
121
/* css reset */
body {
margin: 0px;
padding: 0px;
background: url("books.jpg");
background-size: cover;
color: white;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.left {
display: inline-block;
position: absolute;
top: 20px;
left: 34px;
font-size: 20px;
text-align: center;
}
.left div {
text-align: center;
}
.left img {
width: 60px;
filter: invert();
border-radius: 10px;
}
.mid {
display: block;
/* border: 2px solid green; */
margin: 20px auto;
width: 80%;
}
.right {
position: absolute;
/* border: 2px solid yellow; */
top: 32px;
right: 34px;
display: inline-block;
}
.navbar {
display: inline-block;
}
.navbar li {
display: inline-block;
font-size: 20px;
}
.navbar li a {
color: white;
text-decoration: none;
padding: 34px 23px;
}
.navbar li a:hover,
.navbar li a.active {
text-decoration: underline;
color: gray;
}
.btn {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
margin: 0px 5px;
color: white;
background-color: rgba(58, 57, 57, 0.632);
padding: 7px 16px;
border: 2px solid rgb(107, 105, 105);
border-radius: 20px;
font-size: 14px;
cursor: pointer;
box-shadow: 0px 5px 10px rgb(0, 0, 0);
transition: all 0.2s;
}
.btn:hover {
box-shadow :0px 10px 20px -5px rgba(0, 0, 0 ,40%);
transform: scale(1.03);
}
.btn:active {
box-shadow: 0px 4px 8px rgb(0, 0, 0 ,30%) ;
transform: scale(0.95);
}
.container {
/* border: 2px solid white; */
margin: 78px 35px;
padding: 35px;
width: 43%;
border-radius: 20px;
}
.form-group input {
text-align: center;
display: block;
width: 372px;
padding: 8px;
/* border: 2px solid black; */
margin: 3px auto;
border-radius: 10px;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 15px;
}
.container h1 {
text-align: center;
}
.container button {
display: block;
width: 35%;
margin: auto;
padding: 10px;
}