-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
76 lines (61 loc) · 942 Bytes
/
style.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
74
75
76
* {
font-family: 'Courier New', Courier, monospace;
}
body {
background-image:url('download.jpeg');
background-repeat:repeat;
background-size: 100%;
background-attachment: fixed;
}
table,th,td {
border: 1px solid lightgrey;
border-collapse: collapse;
}
tr:hover {
background-color: darkslategrey;
}
button {
background-color: transparent;
color:grey;
}
footer {
color:white;
}
.centered {
text-align: center;
}
a:hover {
color: blue;
}
button:hover {
color: white;
}
article /* , .Grey */ {
border: 1px solid;
padding: 1%;
margin: 1% 0.5%;
}
iframe, img, video {
border: 2px solid;
}
audio {
height: 20px;
}
#stonks {
width: 20%;
}
.clearfix::after {
content: "";
clear: both;
display: table;
}
textarea {
min-width: 33%;
min-height: 25%;
width: 50%;
height: 10em;
overflow: auto;
}
.Grey {
color: rgb(127, 127, 127);
}