-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (86 loc) · 1.46 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
#navbar {
background-color: #333333;
color: #828182;
height: 100%;
position: fixed;
top: 0;
left: 0;
display: grid;
align-content: center;
justify-content: center;
}
h1{
justify-content: center;
align-content: center;
}
li:hover{
color: #F8F08A;
}
body {
height: 100vh;
display: grid;
grid-template-rows: 1fr;
grid-template-columns: 10% 90%;
font-family: Arial, Helvetica, sans-serif;
}
main {
background-color: gray;
color: white;
opacity: 1;
margin: 1%;
display: grid;
height: 100%;
grid-template-rows: 50% 50%;
grid-template-columns: 1fr;
z-index: 1;
}
input{
display: block;
float: left;
height: 16px;
border-radius: 5px;
width: 300px;
}
img {
position: absolute;
width: 88%;
height: 96%;
z-index: -1;
object-fit: fill;
opacity: 0.15;
}
ul {
list-style-type: none;
font-family: Arial, Helvetica, sans-serif;
padding: 10px;
}
li {
padding: 10px;
}
h4{
text-align: center;
color: #F8F08A;
}
.far{
font-size: 25px;
color: white;
text-align: center;
}
.fas{
font-size: 18px;
color: white;
text-justify: auto;
}
.fas::before{
background: transparent;
}
#displayboard{
padding-left: 100px;
padding-top: 50px;
}
.page{
display: none;
}
.show{
display: block;
}