blob: 245258c2281f0bf773022fb485bebd67e4e97c9d (
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
|
body {
background-color: #dcdcdceb;
}
h1 {
font-size: 3em;
}
h2 {
font-style: italic;
}
h3 {
opacity: 0.7;
}
p{
font-size: 1.1em;
}
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: 400px;
}
#css{
height: 100px;
}
input[type="submit"] {
background-color: #bfbfbf;
}
aside {
position: fixed;
bottom: 0px;
right: -300px;
padding: 7px;
z-index: 5;
background: coral;
opacity: 0.3;
width: 350px;
}
aside:hover {
opacity: 0.9;
right: 0px;
}
nav {
position: fixed;
top: 0px;
right: -50px;
padding: 7px;
z-index: 10;
background: #5085ff;
opacity: 0.3;
width:100px;
}
nav:hover {
opacity: 0.9;
right: 0px;
}
.alert h4 {
background-color: red;
margin: 0px;
}
|