-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
executable file
·120 lines (101 loc) · 1.86 KB
/
stylesheet.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
117
118
119
div.container {
width: 100%;
border: 1px solid gray;
}
header {
padding: 1em;
color: black;
clear: left;
text-align: center;
max-height: 250px;
}
footer {
padding: 1em;
color: white;
background-color: black;
clear: left;
text-align: left;
}
nav {
display: block;
float: top;
max-width: 100%;
margin: 0;
padding: 1em;
}
aside {
float: right;
max-width: 180px;
height: 100%;
margin: 0;
padding: 1em;
background-color: black;
color:white;
}
nav ul {
list-style-type: none;
padding: 0;
}
nav ul a {
text-decoration: none;
font-size: 130%;
}
article {
margin-left: 60px;
margin-right: 190px;
border-right: 1px solid gray;
padding: 1em;
overflow: hidden;
font-size: 160%;
text-align:justify;
min-height: 300px;
}
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: none;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
ul.tab {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
border: 1px solid #ccc;
background-color: #f1f1f1;
}
/* Float the list items side by side */
ul.tab li {float: left;}
/* Style the links inside the list items */
ul.tab li a {
display: inline-block;
color: black;
text-align: center;
padding: 14px 16px;
text-decoration: none;
transition: 0.3s;
font-size: 25px;
}
/* Change background color of links on hover */
ul.tab li a:hover {
background-color: #ddd;
}
/* Create an active/current tablink class */
ul.tab li a:focus, .active {
background-color: #ccc;
}
/*ol.dec {list-style-type: decimal;}*/
/* Style the tab content */
.tabcontent {
display: none;
padding: 6px 12px;
border: 1px solid #ccc;
border-top: none;
}