blob: 163ca7d50531ab1c59978a3311ced218727a4fb9 (
plain)
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
body {
background-color: #dcdcdceb;
font-family: helvetica, arial, sans-serif;
margin: 0px;
}
h1 {
font-size: 3em;
font-variant: all-small-caps;
margin-top: 0px;
margin-bottom: 0px;
}
h2 {
font-style: italic;
}
h3 {
opacity: 0.7;
}
p{
font-size: 1em;
}
em {
opacity: 0.8;
}
img {
width: 90%;
max-width: 1000px;
}
article {
text-align: justify;
padding: 3%;
line-height: 1.2em;
}
article .edit {
text-align: left;
}
article input, textarea, select {
width: 90%;
padding-left: 15px;
padding-right: 15px;
margin: 5px;
margin-left: 5%;
margin-right: 5%;
height: 30px;
border-style: unset;
}
#html{
height: 1000px;
}
#css{
height: 100px;
}
input[type="submit"] {
background-color: #bfbfbf;
}
aside {
position: fixed;
bottom: 0px;
right: -300px;
padding: 7px;
z-index: 5;
background: #6c7d8a;
opacity: 0.3;
width: 350px;
}
aside:hover {
opacity: 1;
right: 0px;
}
nav {
position: fixed;
top: 0px;
right: -50px;
padding: 7px;
z-index: 10;
background: #6c7d8a;
opacity: 0.3;
width:100px;
border-width: 4px;
border-style: outset;
}
nav:hover {
opacity: 1;
right: -5px;
}
.alert h4 {
background-color: red;
margin: 0px;
}
nav a {
color: black;
padding: 1px 4px;
font-size: 13px;
background-color: #bfbfbf;
/* text-rendering: auto; */
/* color: initial; */
/* letter-spacing: normal; */
/* word-spacing: normal; */
/* text-transform: none; */
text-indent: 0px;
text-decoration: none;
/* text-shadow: none; */
/* display: inline-block; */
/* -webkit-appearance: push-button; */
align-items: flex-start;
text-align: center;
cursor: default;
/* color: buttontext; */
/* background-color: buttonface; */
box-sizing: border-box;
/* padding: 2px 6px 3px; */
border-width: 2px;
border-color: lightgrey;
border-style: outset;
}
|