Skip to content

Commit 1b0b9b0

Browse files
authored
Create index.html
0 parents  commit 1b0b9b0

File tree

1 file changed

+127
-0
lines changed

1 file changed

+127
-0
lines changed

index.html

Lines changed: 127 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
<!DOCTYPE html>
2+
3+
4+
<html>
5+
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
6+
7+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
8+
<title>Shamrock</title>
9+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
10+
<meta name="description" content="">
11+
<link rel="canonical" href="https://perso.ens-lyon/timothee.davidcleris">
12+
13+
14+
<style>
15+
body {margin:0;}
16+
ul {
17+
18+
list-style-type: none;
19+
margin: 0;
20+
padding: 0;
21+
overflow: hidden;
22+
background-color: #FFFFFF;
23+
position: fixed;
24+
top: 0;
25+
width: 100%;
26+
}
27+
li {
28+
float: left;
29+
border-right:1px solid #bbb;
30+
}
31+
li:last-child {
32+
border-right: none;
33+
}
34+
li a {
35+
display: block;
36+
color: black;
37+
text-align: center;
38+
padding: 14px 16px;
39+
text-decoration: none;
40+
}
41+
li a:hover:not(.active) {
42+
background-color: #D8D8D8;
43+
}
44+
.active {
45+
background-color: #4CAF50;
46+
}
47+
.page-content{padding:30px 0;background-color:#fff;}
48+
.wrap:before,
49+
.wrap:after{content:"";display:table;}
50+
.wrap:after{clear:both;}
51+
.wrap{max-width:1000px;padding:0 30px;margin:0 auto;zoom:1;}
52+
.post-content{margin:0 0 30px;}
53+
.post-content > *{margin:20px 0;}
54+
.post-content h1,
55+
.post-content h2,
56+
.post-content h3,
57+
.post-content h4,
58+
.post-content h5,
59+
.post-content h6{line-height:1;font-weight:300;margin:40px 0 20px;}
60+
.post-content h2{font-size:32px;letter-spacing:-1.25px;}
61+
.post-content h3{font-size:26px;letter-spacing:-1px;}
62+
.post-content h4{font-size:20px;letter-spacing:-1px;}
63+
.post-content blockquote{border-left:4px solid #e8e8e8;padding-left:20px;font-size:18px;opacity:.6;letter-spacing:-1px;margin:30px 0;}
64+
.post-content ul,
65+
.post-content ol{padding-left:20px;}
66+
.post pre,
67+
.post code{border:1px solid #d5d5e9;background-color:#eef;padding:8px 12px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;font-size:15px;}
68+
.post .highlightglslvs pre,
69+
.post .highlightglslvs code{background-color:#fee;}
70+
.post .highlightglslfs pre,
71+
.post .highlightglslfs code{background-color:#efe;}
72+
.post code{padding:1px 0px;white-space:pre-wrap;}
73+
.post ul,
74+
.post ol{margin-left:1.35em;}
75+
.post pre code{border:none;}
76+
.post pre.terminal{border:1px solid #000;background-color:#333;color:#FFF;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
77+
.post pre.terminal code{background-color:#333;}
78+
body{font-family:Helvetica, Arial, sans-serif;font-size:16px;line-height:1.5;font-weight:300;background-color:#fdfdfd;}
79+
</style>
80+
81+
82+
83+
</head>
84+
85+
86+
87+
<!body bgcolor="#000000">
88+
<body>
89+
90+
<ul>
91+
<li><a class="active" href="./index.html">Home</a></li>
92+
<!-- <li><a href="./news.html">News</a></li>
93+
<li><a href="./project.html">Projects</a></li>
94+
<li><a href="./about.html">About</a></li> -->
95+
</ul>
96+
97+
</body>
98+
99+
100+
101+
<div class="page-content">
102+
<div class="wrap">
103+
<div class="post">
104+
<p></p>
105+
<img src="logosham_white.png" width="550"><!-- width="85%"> -->
106+
107+
108+
<p>An astrophysical code for AMR & SPH on GPU clusters</p>
109+
110+
<hr>
111+
112+
113+
114+
115+
<h1>Current status :</h1>
116+
117+
<p style = "text-indent: 25px;"> Done : MPI</p>
118+
<p style = "text-indent: 25px;"> Todo : Physical models</p>
119+
120+
121+
</p>
122+
123+
</div>
124+
</div>
125+
</div>
126+
127+
</html>

0 commit comments

Comments
 (0)