-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyleme.css
73 lines (64 loc) · 992 Bytes
/
styleme.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
61
62
63
64
65
66
67
68
69
70
71
72
73
table, th, td {
border: 1px solid black;
border-collapse: collapse;
text-align: center;
padding: 1em;
}
th {
background-color: green;
}
tr:nth-child(odd) td {
background-color: gray;
}
* {
color: blue;
background-color: white;
font-family: Tahoma;
}
h1 {
color: darkblue;
background-color: white;
}
section#mood > div{
display: flex;
align-items: center; /* align vertical */
}
.mood {
width: 200px;
height: 300px;
}
img#positive {
width: 300px;
}
em {
text-shadow: -5px 5px 10px rgba(206,89,55,0.5);
}
q {
color: red;
background-color: white;
}
dl dt {
color: deepskyblue;
font-weight: bold;
}
/* unvisited link */
a:link {
color: #FF0000;
}
/* visited link */
a:visited {
color: #00FF00;
}
/* mouse over link */
a:hover {
color: #FF00FF;
}
/* selected link */
a:active {
color: #0000FF;
}
p:first-letter {
float: left;
font-size: 1.5rem;
margin: -0.3em 0.1em 0.2em 0;
}