-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (73 loc) · 1.28 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
*{
box-sizing: border-box;
}
.wrapper{
height: 100vh;
}
.nav{
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
height: 10%;
}
.nav > div{
text-align: center;
background-color: green;
font-size: 1.2em;
color: white;
}
.nav > div:hover{
background-color: black;
color: white;
}
.header{
display: flex;
/* grid-template-columns: 1fr 1fr; */
justify-content:space-between;
background-color: rgb(162, 165, 165);
color: white;
font-size: 2em;
text-align: center;
padding: 8px;
height: 10%;
}
.footer{
background-color: grey;
color: white;
font-size: 2em;
text-align: center;
padding: 8px 0px;
height: 10%;
}
.main{
display: grid;
grid-template-columns: 1fr 1fr 1fr;
height: 70%;
}
.col {
/* border: 1px solid black; */
text-align: center;
}
#container{
border: 1px solid red;
padding: 10px;
margin: 10px;
background-color: beige;
border-radius: 9px;
}
#listTitle{
font-size: size 1.5em;
color: rebeccapurple;
text-align:left;
font-weight: 900;
}
#list {
/* background-color: bisque; */
text-align: left;
/* padding: 5px; */
}
#list > li a {
text-decoration: none;
}
#list > li a:hover{
color: rgb(109, 232, 117);
}