stshanks commited on
Commit
c5f0da1
·
verified ·
1 Parent(s): 57a2a31

Upload style.css

Browse files
Files changed (1) hide show
  1. style.css +39 -0
style.css ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ font-family: Arial, sans-serif;
3
+ background-color: #002855; /* GWU official blue */
4
+ margin: 0;
5
+ padding: 20px;
6
+ color: #333;
7
+ }
8
+ header {
9
+ background-color: #002855; /* GWU official blue */
10
+ color: #e2cb92; /* GWU official gold */
11
+ text-align: center;
12
+ padding: 20px 0;
13
+ }
14
+ h1 {
15
+ margin: 0;
16
+ font-size: 2em;
17
+ }
18
+ p {
19
+ margin: 10px 0;
20
+ font-size: 1.1em;
21
+ }
22
+ .description {
23
+ max-width: 80%;
24
+ margin: 0 auto 20px auto;
25
+ text-align: left;
26
+ background-color: #002855; /* GWU official blue */
27
+ color: #e2cb92; /* GWU official gold */
28
+ padding: 15px;
29
+ border-radius: 8px;
30
+ box-shadow: 0 0 10px rgba(0,0,0,0.1);
31
+ }
32
+ iframe {
33
+ width: 80%;
34
+ margin: 0 auto 20px auto;
35
+ height: 70vh;
36
+ padding: 15px;
37
+ border-radius: 8px;
38
+ box-shadow: 0 0 10px rgba(0,0,0,0.1);
39
+ }