-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
95 lines (80 loc) · 1.43 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
body{
overflow-y: hidden;
padding: 0px;
margin: 0px;
}
#avatar{
display:block;
border-radius: 50%;
width: 80%;
height: auto;
margin-left:auto;
margin-right:auto;
}
a{
text-decoration: none;
}
a:hover{
text-decoration: none;
}
.nav{
padding-top: 5px;
padding-left: 2px;
padding-right: 5px;
color: black;
font-family: monospace;
text-align: right;
background-color: white;
border-right: 0px solid black;
line-height: 16px;
}
.content{
padding: 10px;
border-left: 1px dashed grey;
background-color: whitesmoke;
overflow-y: scroll;
}
.navItem{
color: black;
display: block;
}
.navItem:hover{
color: black;
text-align: right;
opacity: 0.5;
background-color: white;
}
.breakbefore{
margin-top: 30px;
}
.container {
display: grid;
grid-column-gap: 0px;
grid-row-gap: 0px;
grid-template-columns: 150px 1fr;
grid-template-rows: 100vh;
}
#Content-heading{
font-size: 20px;
font-weight: bold;
}
.BoxSystem{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 300px));
row-gap: 10px;
column-gap: 10px;
}
.BoxItem{
display: block;
background-color: white;
margin: 0px;
padding: 0px;
height: 200px;
width: 300;
border: 1px solid gray;
transition: transform .2s;
}
.BoxItem:hover{
border: 1px solid black;
transform: scale(1.01);
}