-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpowerbi.css
More file actions
42 lines (37 loc) · 845 Bytes
/
powerbi.css
File metadata and controls
42 lines (37 loc) · 845 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Montserrat', Arial, sans-serif;
background: linear-gradient(135deg, #8fbcda, #252e30);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
padding: 20px;
}
.container {
text-align: center;
background-color: rgba(255, 255, 255, 0.8); /* Added transparency */
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
padding: 20px;
max-width: 800px;
width: 100%;
}
h1 {
font-family: 'Montserrat', sans-serif;
color: #007acc;
margin-bottom: 20px;
}
.report-frame {
width: 100%;
height: 450px;
border: 2px solid #e0e0e0;
border-radius: 8px;
}
.montserrat {
font-family: 'Montserrat', sans-serif;
}