Skip to content
This repository was archived by the owner on Jan 9, 2023. It is now read-only.

Commit f8c9700

Browse files
committed
add style
1 parent 60a8fd8 commit f8c9700

File tree

2 files changed

+178
-0
lines changed

2 files changed

+178
-0
lines changed

index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<title>Audit Encrypt.to</title>
55
<script src="jquery.js" type="text/javascript"></script>
66
<script src="audit.js" type="text/javascript"></script>
7+
<link rel="stylesheet" type="text/css" href="style.css">
78
</head>
89
<body>
910
<p><b>Security Audit for <a href="https://encrypt.to/">Encrypt.to</a></b></p>

style.css

Lines changed: 177 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,177 @@
1+
body {
2+
margin: 60px auto;
3+
font-family: Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif;
4+
background-color: white;
5+
color: #484848;
6+
7+
width: 540px;
8+
font-size: 16px;
9+
line-height: 24px;
10+
}
11+
12+
table {
13+
font-family: verdana,arial,sans-serif;
14+
font-size:11px;
15+
color:#333333;
16+
border-width: 1px;
17+
border-color: #666666;
18+
border-collapse: collapse;
19+
}
20+
table th {
21+
border-width: 1px;
22+
padding: 8px;
23+
border-style: solid;
24+
border-color: #666666;
25+
background-color: #dedede;
26+
}
27+
table td {
28+
border-width: 1px;
29+
padding: 8px;
30+
border-style: solid;
31+
border-color: #666666;
32+
background-color: #ffffff;
33+
}
34+
35+
header {
36+
margin-top: 30px;
37+
margin-bottom: 20px;
38+
}
39+
40+
header a {
41+
color: #484848;
42+
text-decoration: none;
43+
border-bottom: 1px dotted #999892;
44+
}
45+
46+
header a:visited {
47+
color: #484848;
48+
}
49+
50+
footer {
51+
border-top: 1px solid rgb(206,206,206);
52+
53+
margin-top: 48px;
54+
padding-top: 24px;
55+
56+
font-size: 14px;
57+
}
58+
59+
header a:hover {
60+
border-bottom: 1px solid #999892;
61+
}
62+
63+
h1 {
64+
font-size: 34px;
65+
line-height: 38px;
66+
font-weight: normal;
67+
margin-bottom: 20px;
68+
}
69+
70+
body.post h1 {
71+
margin-bottom: 5px;
72+
}
73+
74+
body.post header p {
75+
font-size: 12px;
76+
}
77+
78+
h2 {
79+
margin-top: 40px;
80+
margin-bottom: 5px;
81+
82+
font-size: 22px;
83+
font-weight: normal;
84+
}
85+
86+
h3 {
87+
margin-top: 20px;
88+
margin-bottom: 5px;
89+
90+
font-size: 18px;
91+
font-weight: bold;
92+
}
93+
94+
img.avatar {
95+
background-size: 100%;
96+
display: block;
97+
height: 80px;
98+
overflow: hidden;
99+
border-radius: 100px;
100+
-moz-border-radius: 100px;
101+
-webkit-border-radius: 100px;
102+
width: 80px;
103+
margin-right: 15px;
104+
}
105+
106+
107+
pre {
108+
font-size: 15px;
109+
white-space: pre;
110+
word-wrap: normal;
111+
overflow: auto;
112+
width: auto;
113+
}
114+
115+
@media screen and (max-width: 540px) {
116+
body {
117+
margin: 10px auto;
118+
padding: 0 20px 0 20px;
119+
width: auto;
120+
word-wrap: break-word;
121+
}
122+
123+
pre {
124+
font-size: 14px;
125+
line-height: 16px;
126+
}
127+
128+
img {
129+
max-width: 100%;
130+
width: auto;
131+
height: auto;
132+
}
133+
134+
img.avatar {
135+
height: 110px;
136+
width: 110px;
137+
}
138+
139+
.video-wrap {
140+
position: relative;
141+
padding-bottom: 56.25%;
142+
padding-top: 30px; height: 0; overflow: hidden;
143+
}
144+
145+
.video-wrap iframe,
146+
.video-wrap object,
147+
.video-wrap embed {
148+
position: absolute;
149+
top: 0;
150+
left: 0;
151+
width: 100%;
152+
height: 100%;
153+
}
154+
}
155+
156+
157+
a {
158+
color: #C30C0C;
159+
}
160+
161+
a:visited {
162+
color: gray;
163+
}
164+
165+
p {
166+
margin: 0 0 2ex 0;
167+
}
168+
169+
ul {
170+
margin: 0 0 2ex 0;
171+
padding: 0;
172+
}
173+
174+
li {
175+
margin: 0 0 0 20px;
176+
padding: 0;
177+
}

0 commit comments

Comments
 (0)