-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (49 loc) · 1.06 KB
/
style.css
File metadata and controls
51 lines (49 loc) · 1.06 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
html, body {
margin: 0;
padding: 0;
position: relative;
/* overflow: hidden; */
}
* {
font-family: 'Noto Sans', sans-serif;
-webkit-user-select: none; /* Safari */
-ms-user-select: none; /* IE 10 and IE 11 */
user-select: none; /* Standard syntax */
}
.body-container {
margin: 50px auto;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: repeat(3, 1fr);
gap: 30px;
padding: 0px 5%;
max-width: 1000px;
}
.topic-container {
text-decoration: none;
border-radius: 5px;
border: 1px solid rgb(209, 209, 209);
box-shadow: 5px 5px 10px rgb(235, 235, 235);
display: grid;
grid-template-columns: 250px 1fr;
height: 250px;
overflow: hidden;
box-sizing: border-box;
}
.img-container {
height: 250px;
width: 250px;
object-fit: cover;
}
.topic-descp {
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 70px 1fr;
gap: 10px;
padding: 10px 5%;
text-align: center;
justify-items: center;
}
.topic-container:visited {
color: unset;
}