-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.css
60 lines (52 loc) · 903 Bytes
/
styles.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
body,html{
height: 100%;
background-color: #E7E7E7;
padding: 0px; /* reset default */
margin: 0px; /* reset default */
}
body{
display: grid;
justify-items: center; /* horizontal alignment */
}
h1{
padding: 20px;
border: 2px solid #00e0a5;
box-shadow: 5px 6px 0px #00e0a5;
font-size:30px;
color:#333;
font-family: monospace;
}
main{
align-self: end;
}
footer{
align-self: start;
}
/* DROZERAH */
.drozerah {
text-decoration: none;
font-size: 22px;
line-height: 24px;
height: 24px;
color:#333;
}
.drozerah svg {
width:20px;
height:20px;
display: inline-block;
vertical-align: -2px;
}
.drozerah path {
fill: #6a1b9a;
fill-rule: evenodd;
}
.drozerah span {
display: inline-block;
color: #6a1b9a;
}
.drozerah:hover path {
fill:purple;
}
.drozerah:hover span {
color: purple;
}