-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
91 lines (76 loc) · 1.22 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
* {
color: black;
margin: 0px;
}
body {
background-image: url(./img/homeIndex_bg.jpeg);
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.container {
text-align: center;
}
p {
font-size: 20px;
font-weight: bold;
font-family: "Sofia", sans-serif;
margin: 0%;
}
.assignment {
padding-bottom: 50px;
}
h1,
h2 {
text-shadow: 5px 5px 5px #ababab;
margin: 0%;
}
.heading {
padding: 15px;
margin-top: 50px;
}
.credentials {
margin: 20px;
}
table {
padding-top: 25px;
font-size: 18px;
margin: auto;
text-align: left;
}
.tableCol-1,
.tableCol-2,
.tableCol-3,
.tableCol-4 {
color: whitesmoke;
background-color: #2C3E50;
}
tbody tr:hover {
background-color: rgb(233, 202, 202);
}
th,
td {
padding: 10px;
border-bottom: 1px solid rgb(119, 94, 93);
border-radius: 5px;
}
tr:nth-child(odd) {
background-color: #ECF0F1;
}
tr:nth-child(even) {
background-color: #B2BABB;
}
a:link,
a:visited {
color: #E74C3C;
padding: 3px;
text-align: center;
text-decoration: none;
display: inline-block;
border-radius: 5px;
}
a:hover,
a:active {
background-color: green;
color: white;
}