-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
133 lines (114 loc) · 2.04 KB
/
main.css
File metadata and controls
133 lines (114 loc) · 2.04 KB
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
131
132
133
/* testing css */
* {margin: 10px;
font-family: Verdana,Arial,sans-serif;
}
/* h2{
font-style:italic;
} */
h3{
font-style:italic;
}
h4{
font-style:italic;
}
h1 + p {
font-family: sans-serif;
font-size: 1.5rem;
}
/* h2:after
{
content:' ';
display:block;
border:1px solid black;
} */
h3:after
{
content:' ';
display:block;
border: .7px solid black;
}
/* h4:after
{
content:' ';
display:block;
border:1px solid black;
} */
h2 + p {
font-size: 1.3rem;
font-family: sans-serif;
}
p {
font-size: 1rem;
}
header {
text-align: center ;
width: 100%;
height: 100px;
background-color: red;
color: whitesmoke;
font-family: Verdana,Arial,sans-serif;
font-size:40px
}
pre {
text-align: left;
/* padding-left: 10px; */
/* display: flex; */
font-family: 'Courier New', Courier, monospace;
width: 100%;
padding: 1rem;
box-sizing:border-box ;
}
.command {
font-family: 'Courier New', Courier, monospace;
/* background-color: rgb(238, 236, 236); */
/* border: black solid ; */
/* padding: 10px; */
}
.command:first-line{
font-size: 1.2rem;
font-weight: bolder;
font-family: 'Courier New', Courier, monospace;
}
.emphasize {
color: red;
}
.command {
font-size: .9rem;
/* background-color: rgb(238, 236, 236); */
}
table {
display: block;
margin: 25px ;
border-collapse: collapse;
}
tr {
border-bottom: 1px solid black;
}
td{
width: 25%;
}
tr:first-child{
font-weight: bolder;
border-bottom: 2px solid black;
}
td:first-child{
font-style: italic;
font-weight:lighter;
width: 20%;
}
.hoverTable{
width:100%;
border-collapse:collapse;
}
/* .hoverTable td{
padding:7px; border:#4e95f4 1px solid;
} */
/* Define the default color for all the table rows */
/* .hoverTable tr{
background: #b8d1f3;
} */
/* Define the hover highlight color for the table row */
.hoverTable tr:hover {
background-color: lightgray;
}
/* testing */