-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
116 lines (93 loc) · 1.59 KB
/
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
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
* {
box-sizing: border-box;
}
body {
background-color: whitesmoke;
font-family: calibri;
}
h1 {
text-align: center;
}
h3 {
color: darkblue;
text-align: center;
}
table {
border: 1px solid steelblue;
text-align: center;
margin: 0 auto;
}
td {
border-bottom: 1px solid steelblue;
}
th {
border-bottom: 1px solid steelblue;
background-color: mediumslateblue;
font-weight: 900;
}
.col1 {
background-color: lightgray;
font-weight: bold;
}
.col2 {
padding: 0 10px;
background-color: aliceblue;
}
.col3 {
background-color: lightgray;
padding: 0 10px;
}
.col4 {
background-color: aliceblue;
}
.table3 {
display: inline-block;
left: 100px;
position: relative;
}
.table-semantic {
display: inline-block;
position: relative;
left: 200px;
}
.table-html-misc {
position: relative;
display: inline-block;
top: -277px;
left: 250px;
}
img {
display: inline-block;
width: 500px;
height: 315px;
position: relative;
left: 105px;
}
.button {
padding: 5px;
border: 1px solid black;
border-radius: 5px;
text-decoration: none;
box-shadow: 0px 5px;
}
.button:hover {
cursor: pointer;
}
.button:active {
margin-top: 5px;
color: black;
box-shadow: 0px 0px;
}
.arrow-right {
width: 0;
height: 0;
border-top: 20px solid transparent;
border-bottom: 20px solid transparent;
border-left: 30px solid green;
}
th {
color: #ffffff;
}
.red {
color: red;
}