-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
110 lines (102 loc) · 1.7 KB
/
Copy pathstyle.css
File metadata and controls
110 lines (102 loc) · 1.7 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
* {
font-family: Deja Vu;
font-size: 16px;
margin: 0px;
padding: 0px;
}
p {
margin: 10px;
}
.contentdiv {
margin: 10px;
margin: 0 auto;
width: 750px;
}
.contentdiv ol {
margin-left: 35px;
}
.contentdiv h1 {
font-size: 34px;
margin: 10px 5px 20px 5px;
}
.contentdiv h2 {
font-size: 30px;
margin: 10px 5px 20px 5px;
}
.contentdiv h5 {
font-size: 19px;
margin: 10px 5px 20px 5px;
}
.contentdiv table {
margin: 5px;
}
.contentdiv table .option {
font-weight: bold;
}
.contentdiv table .option a {
color: blue;
text-decoration: underline;
}
.contentdiv table .description {
font-style: italic;
}
.contentdiv .middle {
display: block;
text-align: center;
}
.contentdiv button {
width: 250px;
}
.contentdiv .navigation {
margin-bottom: 15px;
display: block;
text-align: center;
}
.contentdiv .navigation a {
margin-right: 5px;
margin-left: 5px;
}
.faq {
margin-bottom: 25px;
}
.faqs .question {
font-weight: bold;
font-size: 19px;
margin-bottom: 10px;
}
.faqs .answer {
margin-bottom: 20px;
}
.box {
color: black;
background-color: #EEEEEE;
border: 1.5px solid grey;
z-index: 10;
position: relative;
width: 200px;
height: 200px;
overflow: auto;
margin: 10px;
padding: 10px;
font-size: 16px;
box-shadow: 0 10px 10px 2px rgba(0,0,0,0.3);
border-radius: 4px;
float: left;
}
.box .logo {
margin: 0 auto;
width: 100px;
margin-top: 7px;
}
.box .title {
font-size: 17px;
font-weight: bold;
margin: 3px;
margin-top: 8px;
}
.box .description {
position: absolute;
font-size: 15px;
color: #434343;
margin: 3px;
}