forked from pranavrc/hairyplotter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
109 lines (94 loc) · 2.25 KB
/
index.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
html, body, p { width: 100%; display: block; margin: 0px; padding: 0px; }
body {
background-color: hsl(0,0%,95%);
font-family: "Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif;
}
#parent {
width: 60%;
margin: auto;
font-size: 14px;
text-align: left;
line-height: 150%;
}
ul {
background-color: hsl(0,0%,90%);
list-style-type: decimal;
margin: 0;
padding: 10px;
padding-left: 50px;
text-align: left;
border: 1px solid #999;
-webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
border-radius: 10px;
}
.code {
font-family: "Lucida Console", "Lucida Sans Typewriter", Monaco, "Bitstream Vera Sans Mono", monospace;
font-size: 12px;
border-radius: 10px;
border-left: 1px solid #999;
padding-left: 20px;
margin-top: 8px;
margin-bottom: 8px;
}
#exp {
text-align: center;
font-size: 15px;
margin-bottom: 5px;
font-weight: bold;
}
p {
background: url('');
}
hr {
color: white;
border: 0;
height: 1px;
background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.3), rgba(0,0,0,0));
background-image: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.3), rgba(0,0,0,0));
background-image: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.3), rgba(0,0,0,0));
background-image: -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.3), rgba(0,0,0,0));
}
h1 {
font-size: 25px;
font-weight: bold;
color: #666;
text-align: center;
}
h3 {
color: #666;
}
a:link {
color: #800000;
}
a:visited {
color: #696969;
}
#footer {
display: block;
margin-top: 0px;
font-size: 11px;
text-align: center;
padding-bottom: 10px;
}
.clicktoshow {
display: inline-block;
cursor: pointer;
background-color: hsl(0,0%,90%);
border: 1px solid #999;
padding: 5px;
margin: 15px;
-webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
border-radius: 5px;
}
.hide {
display: none
}
#parent img {
border: 1px solid black;
width: 400px;
height: 200px;
}