-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
130 lines (106 loc) · 1.95 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
:root{
--padding: 15px;
--margin-bottom: 10px;
}
body{
margin: 0px;
font-family: Sans-Serif;
}
a{
text-decoration-line: none;
}
.content{
margin: 0px 20px;
}
.narrow{
margin: 0px 10%;
}
@media screen and (max-width: 650px) {
.narrow {
margin: 0px 10px;
}
}
.navigation{
background-image: -webkit-linear-gradient(top,#3c3c3c 0,#222 100%);
background-image: -o-linear-gradient(top,#3c3c3c 0,#222 100%);
background-image: -webkit-gradient(linear,left top,left bottom,from(#3c3c3c),to(#222));
background-image: linear-gradient(to bottom,#3c3c3c 0,#222 100%);
padding: var(--padding);
margin-bottom: var(--margin-bottom);
color: white;
}
.navigation-link{
color: darkgrey;
padding: var(--padding);
}
.heading{
margin-bottom: var(--margin-bottom);
}
.system{
border: 1px solid lightgrey;
border-radius: 5px;
padding: 7px var(--padding);
display: inline-flex;
margin-right: 10px;
}
.system img{
height: 20px;
}
.title{
font-size: 20px;
}
.desc{
margin-bottom: var(--margin-bottom);
}
table{
width: 100%;
margin-bottom: var(--margin-bottom);
}
.flex{
display: flex;
}
.flex:nth-child(1){
margin-right: var(--margin-bottom);
}
table, td {
border: 1px solid #DEDEDE;
border-collapse: collapse;
padding: var(--padding);
}
tr:nth-child(odd) {
background-color: #F9F9F9;
}
.tabs {
overflow: hidden;
border: 1px solid #DEDEDE;
background-color: white;
}
.tabs button {
background-color: inherit;
border: none;
outline: none;
cursor: pointer;
padding: var(--padding);
font-size: 17px;
}
.tabs button:hover {
background-color: #DEDEDE;
}
.tabcontent {
display: none;
padding: 6px 12px;
border: 1px solid #DEDEDE;
border-top: none;
}
.magenta{
color: magenta;
}
.blue{
color:blue;
}
.green{
color: green;
}
.red {
color: red;
}