-
Notifications
You must be signed in to change notification settings - Fork 0
/
old-styles.css
121 lines (106 loc) · 2.69 KB
/
old-styles.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
html, body {
height:100%;
width:100%;
margin: 0px;
background-color: aliceblue;
background-image: url("https://i.pinimg.com/originals/31/1d/b7/311db75b09c8f703cb4d787776c425b3.gif");
background-repeat: no-repeat;
background-size: cover;
}
.container {
font-family: 'Roboto', sans-serif;
height:95%;
width:98%;
margin: 10px;
}
.container > * {
background-color: #ccc;
/* background-image: url("https://i.redd.it/yn9ryipxeac31.png"); */
background-size: cover;
padding: 1em;
border-radius: 20px;
margin-bottom: 2%;
}
header {
background-image: url("https://images.unsplash.com/photo-1517504734587-2890819debab?ixid=MXwxMjA3fDB8MHxzZWFyY2h8MXx8cHVycGxlJTIwc25vd3xlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60");
}
#nav-bar {
grid-row-end: span 2;
text-align: center;
color:lavender;
background-image: url("https://i.pinimg.com/originals/31/1d/b7/311db75b09c8f703cb4d787776c425b3.gif");
}
ul#left-sidebar-list {
padding: 0px;
}
li.left-sidebar-items {
list-style: none;
display: inline-block;
}
.nav-links {
color:lavender;
font-weight: 500;
font-size: 16px;
margin: 12px;
padding-left: 40px;
padding-right: 40px;
display: flex;
text-transform: initial;
}
h1 {
font-size: 24px;
}
h2 {
font-size: 20px;
margin: 25px;
}
p {
font-family: 'Lato', sans-serif;
font-size: 16px;
font-weight: 500;
color: lavenderblush;
text-align: justify;
text-transform: initial;
}
.content {
min-height: 40%;
/* overflow-y: scroll; */
/* background-color: aliceblue; */
background-image: url("https://images.unsplash.com/photo-1517504734587-2890819debab?ixid=MXwxMjA3fDB8MHxzZWFyY2h8MXx8cHVycGxlJTIwc25vd3xlbnwwfHwwfA%3D%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60");
}
/* responsive grid layout */
@media screen and (min-width: 40em) {
.container > * {
margin-bottom: 0;
}
/* Define the grid */
.container {
display: grid;
grid-template-columns: 18% 60% 18%;
grid-gap: 2% 2%;
grid-template-rows: 10% auto 10%;
}
/* Place items on the grid */
.header {
grid-column: 1 / span 3;
text-transform: uppercase;
color:rgb(210, 210, 250);
font-weight: 600;
font-size: 20px;
background-image: url("https://i.redd.it/yn9ryipxeac31.png");
display:flex;
justify-content:center;
align-items:center;
}
nav {
height: 80vh;
}
.content {
grid-column: 2 / span 2;
text-align: center;
text-transform: uppercase;
color:lavender;
font-weight: 600;
height: 80vh;
}
}