-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss
More file actions
108 lines (93 loc) · 1.86 KB
/
css
File metadata and controls
108 lines (93 loc) · 1.86 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
body {
margin: 0px;
padding: 0px;
height: 1500px;
font-family: 'Libre Baskerville', serif;
}
.left {
position: absolute;
left: 35px;
top: 20px;
display: inline-block;
color: aliceblue;
}
.left img {
width: 90px;
height: fit-content;
}
.mid {
display: block;
width: 50%;
margin: 20px auto;
color: rgb(255, 255, 255);
}
.right {
position: absolute;
right: 35px;
top: 31px;
display: inline-block;
color: rgb(255, 255, 255);
}
.navbar {
display: inline-block;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.navbar li {
display: inline-block;
font-size: 16px;
}
.navbar li a {
color: rgb(255, 255, 255);
text-decoration: none;
padding: 34px 34px;
font-family: Verdana, sans-serif;
font-weight: 600;
}
.navbar li a:hover,
.navbar li a.active {
color: rgb(120 120 120);
text-decoration: underline;
}
.btn {
margin: 0px 9px;
color: rgb(0, 0, 0);
background-color: rgb(174, 171, 171);
padding: 4px 15px;
border-radius: 4px;
font-family: 'Libre Baskerville', serif;
font-weight: 400;
cursor: pointer;
}
.btn:hover {
background-color: rgb(57, 57, 57);
color: white;
cursor: auto;
}
.btn:pressed {
cursor: crosshair;
}
.container {
border: 2px solid rgb(255, 255, 255);
color: white;
margin: 103px 81px;
padding: 93px 19px;
border-radius: 3px;
width: 30%;
}
.form-group input {
display: block;
width: 350px;
text-align: center;
padding: 10px 2px;
margin: 23px auto;
font-size: 14px;
font-family: 'Libre Baskerville', serif;
}
.container h1 {
text-align: center;
}
.container button {
display: block;
width: 43%;
margin: auto;
}