forked from DevSankalp1894/swank-meeting-7218
-
Notifications
You must be signed in to change notification settings - Fork 0
/
detail.css
109 lines (88 loc) · 1.78 KB
/
detail.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
body {
margin: auto;
font-family: 'Open Sans', sans-serif;
}
h1 {
font-family: 'Open Sans', sans-serif;
text-decoration: underline;
text-decoration-color: red;
margin-left: 20px;
}
/* first top left */
#container {
display: flex;
justify-content: space-evenly;
width: 90%;
/* border: 1px solid red; */
margin: auto;
}
#left_con {
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
padding: 5px;
width: 65%;
border-radius: 5px;
display: grid;
grid-template-columns: repeat(1, 1fr);
gap: 30px;
font-family: 'Open Sans', sans-serif;
/* border: 1px solid blue; */
}
#right_con {
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
padding: 5px;
width: 30%;
border-radius: 5px;
display: grid;
grid-template-columns: repeat(1, 1fr);
gap: 30px;
font-family: 'Open Sans', sans-serif;
/* border: 1px solid blue; */
}
#left_con1 img {
width: 100%;
}
/* Most popular */
#right_con {
/* border: 1px solid red; */
/* margin-top: 200px; */
float: left;
overflow-y: auto;
height: 1000px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#right_con>h2 {
text-decoration: underline;
text-decoration-color: red;
position: absolute;
background-color: white;
width: 30%;
margin-top: 0px;
margin-left: 5px;
font-size: 22px;
color: blue
}
#right_con_div {
/* width: 30%; */
padding: 5px;
display: grid;
grid-template-columns: repeat(1, 1fr);
gap: 20px;
margin-top: 20px;
}
#right_con_div>div img {
width: 100%;
}
#right_con_div h4:hover {
color: blue
}
#left_con2 {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
#left_con2 img {
width: 100%;
}
#left_con2 h4:hover {
color: blue
}