-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
59 lines (51 loc) · 932 Bytes
/
styles.css
File metadata and controls
59 lines (51 loc) · 932 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
body {
/* background-color: #260042; */
font-family: 'Source Sans Pro', sans-serif;
color: white;
background-image: url('congruent_pentagon.png');
background-repeat: repeat-x repeat-y;
}
a {
color: #555555;
}
.container {
margin: 50px auto;
width: 700px;
background-color: rgba(255, 255, 255, 0.8);
box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
color: black;
padding: 100px;
text-align: center;
}
.container img {
width: 300px;
height: 300px;
}
.heading,
.subheading {
margin-top: 0;
margin-bottom: 0;
text-align: center;
font-family: 'Montserrat', serif;
color: #333333;
}
.heading {
font-size: 32pt;
}
.subheading {
font-size: 26pt;
}
.container p {
font-size: 16pt;
text-align: center;
color: #444444;
}
.footer {
position: absolute;
bottom: 0;
padding: 10px;
width: 100%;
text-align: center;
background-color: rgba(255, 255, 255, 0.35);
color: #444444;
}