-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
49 lines (45 loc) · 835 Bytes
/
styles.css
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
/* ----- Stylesheet with shared elements ----- */
body {
/* Background image */
background-image: url(background.png);
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
/* The von Neumann Boutique header*/
header {
margin: 0px;
max-width: 840px;
margin-left: auto;
margin-right: auto;
margin-bottom: 0px;
position: sticky;
top: 0;
text-align: center;
background-color: white;
z-index: 9;
}
.vnb {
margin-top: 0;
width: auto;
border: 10px double #708E92;
font-family: cursive;
color: black;
padding: 0px
}
.vnb:hover {
color: #708E92;
transform: scale(1.025);
}
/* Content body */
.container {
text-align: center;
max-width: 840px;
margin-left: auto;
margin-right: auto;
}
/* Copyright notice */
footer {
text-align: center;
bottom: 0;
}