-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyle2.css
More file actions
68 lines (57 loc) · 1002 Bytes
/
Style2.css
File metadata and controls
68 lines (57 loc) · 1002 Bytes
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
body, html {
height: 100%;
margin: 0;
padding: 0;
}
.container {
display: flex;
height: 100vh;
overflow: hidden;
}
.sidebar {
width: 30%;
padding: 20px;
background-color: #f0f0f0;
overflow-y: auto;
}
.main-content {
width: 70%;
height: 100%;
overflow: hidden;
display: flex;
flex-direction: column;
}
.iframe-container {
flex-grow: 1;
position: relative;
}
iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
<<<<<<< HEAD
=======
.callout-block {
background-color: #f0f0f0 !important; /* Light grey background */
padding: 20px;
border-radius: 10px;
}
>>>>>>> 3dbc1febbc73c14831b33a3b2dff25ccd0961c6a
.columns {
display: flex;
align-items: center; /* Centers content vertically */
gap: 20px;
}
.column img {
display: block;
margin: auto; /* Centers image */
border-radius: 50%; /* Optional: makes image circular */
max-width: 150px; /* Adjust as needed */
}
.column {
text-align: left;
}