eaglelandsonce commited on
Commit
e9a0f68
·
verified ·
1 Parent(s): 31b1b39

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +75 -18
style.css CHANGED
@@ -1,28 +1,85 @@
1
  body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
4
  }
5
 
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
 
 
9
  }
10
 
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
  }
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
24
  }
25
 
26
- .card p:last-child {
27
- margin-bottom: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
  }
 
1
  body {
2
+ margin: 0;
3
+ font-family: Arial, sans-serif;
4
  }
5
 
6
+ .container {
7
+ display: flex;
8
+ flex-direction: column;
9
+ height: 100vh;
10
+ width: 100%;
11
  }
12
 
13
+ .top-bar {
14
+ background-color: #333;
15
+ color: white;
16
+ text-align: center;
17
+ padding: 10px;
18
  }
19
 
20
+ .main {
21
+ display: flex;
22
+ flex: 1;
 
 
 
23
  }
24
 
25
+ .side-bar {
26
+ width: 100px;
27
+ background-color: #444;
28
+ display: flex;
29
+ flex-direction: column;
30
+ align-items: center;
31
+ justify-content: space-between;
32
+ padding: 20px;
33
+ }
34
+
35
+ .side-bar button {
36
+ background-color: #666;
37
+ color: white;
38
+ border: none;
39
+ margin: 10px 0;
40
+ padding: 10px;
41
+ cursor: pointer;
42
+ text-align: center;
43
+ }
44
+
45
+ .nav-buttons {
46
+ margin-top: auto;
47
+ }
48
+
49
+ .content {
50
+ flex: 1;
51
+ display: flex;
52
+ justify-content: center;
53
+ align-items: center;
54
+ background-color: #eee;
55
+ position: relative;
56
+ }
57
+
58
+ #content-area {
59
+ width: 80%;
60
+ height: 80%;
61
+ position: relative;
62
+ overflow: hidden;
63
+ }
64
+
65
+ #slide-image {
66
+ width: 100%;
67
+ height: 100%;
68
+ object-fit: cover;
69
+ }
70
+
71
+ #slide-text {
72
+ position: absolute;
73
+ background-color: rgba(0, 0, 0, 0.7);
74
+ color: white;
75
+ padding: 20px;
76
+ display: none;
77
+ width: 100%;
78
+ height: 100%;
79
+ }
80
+
81
+ #slide-video {
82
+ display: none;
83
+ width: 100%;
84
+ height: 100%;
85
  }