-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
88 lines (75 loc) · 1.19 KB
/
style.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
* {
max-width: 700px;
margin: auto;
}
/*body {
min-width: 500px;
}*/
div {
border-radius: 5px;
}
#header {
height: 40px;
width: 100%;
background-color: #ffcccc;
position: fixed;
z-index: 1;
}
#title {
margin-left: 3%;
}
#footer {
height: 50px;
width: 100%;
background-color: #ffcccc;
clear: both;
position: relative;
}
.left {
height: 1000px;
width: 45px;
background-color: #e0eeee;
float: left;
position: fixed;
}
.right {
height: 1000px;
width: 45px;
background-color: #e0eeee;
float: right;
position: inherit;
}
.stuff {
display: inline-block;
margin-top: 6px;
margin-left: 55px;
width: 75%;
height: 1000px;
}
p,
li {
font-family: 'Cormorant Garamond';
}
.head {
font-size: 20px;
}
#name {
font-family: Sacramento;
float: right;
margin-top: 10px;
margin-right: 4%;
}
a {
color: black;
text-decoration: none;
}
@media only screen and (max-width: 430px) {
.left,
.right {
display: none;
}
.stuff {
width: 100%;
margin-left: 10px;
}
}