-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·67 lines (58 loc) · 1.17 KB
/
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
table {
font-family: Arial, Helvetica, sans-serif;
border-collapse: collapse;
width: 65%
}
td, th {
border-bottom: 1px solid #dddddd;
text-align: left;
padding: 20px;
}
/* modify th padding */
th {
padding: 8px;
}
tr{
border-bottom: 1px solid #dddddd;
border-top: 1px solid #dddddd;
border-collapse: collapse;
}
/*Button Styling*/
.button {
background-color: lightgray;
border: none;
color: black;
font-size: 10px;
border-radius: 4px;
padding: 12px 28px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
.button:hover {
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
/*Nav Bar Styling*/
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: white;
}
li {
float:left;
}
li a {
display: block;
color: #1070e0;;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
li a:hover {
background-color: lightgray;
}
h1, h2, h3 {font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;}