-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.css
More file actions
86 lines (66 loc) · 991 Bytes
/
base.css
File metadata and controls
86 lines (66 loc) · 991 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
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
html, body {
margin: 0;
}
body {
background-color: #f1f1f1;
display: flex;
justify-content: center;
}
.wrapper {
width: 1200px;
display: flex;
margin: 0 auto;
background-color: aquamarine;
}
.main {
display: flex;
flex-flow: column;
width: 85%;
}
.menu {
width: 15%;
background-color: rgb(42, 129, 129);
padding: 10px 20px 0px;
}
.header {
background-color: rgb(61, 90, 90);
min-height: 150px;
}
.content {
background-color: rgb(138, 138, 138);
min-height: 300px;
padding: 20px;
font-family: garamond;
}
.footer {
background-color: rgb(147, 196, 14);
min-height: 150px;
}
f {
font-family:garamond;
}
a {
font-family: garamond;
}
a:link {
color: white;
}
a:visited {
color: rgb(155, 152, 152);
}
a:hover {
color:rgb(22, 28, 70);
}
a:active {
color: turquoise;
}
.tt {
color: white;
background-color: darkcyan;
}
input {
display: flex;
}
textarea {
display: flex;
}