-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1.StyleSheet.css
More file actions
91 lines (86 loc) · 1.37 KB
/
1.StyleSheet.css
File metadata and controls
91 lines (86 loc) · 1.37 KB
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
89
90
91
body
{
background-color: floralwhite;
color: sienna;
font-family: Calibri;
margin-left: 20px;
height: auto;
width: auto;
}
::selection
{
color: floralwhite;
background-color: lightcoral;
}
#menuBar
{
font-size: 15px;
color: palevioletred;
background-color: #FFE386;
}
#titleHeader
{
font-size: 15px;
font-weight:bold;
color: lightcoral;
}
#matter
{
background-color: floralwhite;
color: sienna;
font-family: Calibri;
margin-left: 20px;
height: auto;
width: auto;
}
li.heading
{
font-size:20px;
font-weight:bold;
color:lightcoral;
}
li.content
{
color: sienna;
font-weight:normal;
font-size:medium;
}
li.withBorder
{
border-style:solid;
border-width:thin;
border-color:sienna;
margin:10px;
padding:10px;
}
ul.none
{
list-style-type:none;
}
a:link {
color: palevioletred;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: palevioletred;
background-color: transparent;
text-decoration: none;
}
a.menuBar:hover
{
padding: 5px 5px 5px 5px;
border: 1px outset sienna;
border-radius: 20px;
background-color: lightcoral;
}
a:hover {
color: brown;
text-decoration: solid;
padding: 2px 2px 2px 2px;
}
a:active {
color: black;
background-color: transparent;
text-decoration: underline;
}