-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
87 lines (69 loc) · 1.18 KB
/
Copy pathstyle.css
File metadata and controls
87 lines (69 loc) · 1.18 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
@font-face {
font-family: 'kanye';
src: url('kanye.ttf');
}
.navbar-bottom{
list-style: none;
}
.no-dec{
text-decoration: none;
color: black;
font-family: "Courier New";
font-size: 25;
}
.no-dec:hover{
color: darkgray;
}
.navbar{
border-radius: 0;
height: 100%;
}
.left-column{
color: white;
float: left;
width: 20%;
height: 100vh;
}
.right-column{
/*background-color: lightgray;*/
float: left;
width: 77%;
padding-right: 3%;
display: grid;
grid-gap: 10px;
}
@media (min-width: 400px) {
.right-column { grid-template-columns: 1fr; }
}
@media (min-width: 500px) {
.right-column { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 1000px) {
.right-column { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1250px) {
.right-column { grid-template-columns: repeat(4, 1fr); }
}
.resize {
width: 100%;
height: auto;
position: relative;
padding-top: 10px;
}
.resize:hover{
cursor: pointer;
}
.caption-text{
padding-top: 10px;
font-family: "Courier New";
font-size: 15;
color: black;
text-align: center;
}
.arrow-text{
padding-top: 25px;
font-family: "Courier New";
font-size: 15;
color: black;
text-align: center;
}