Skip to content

Commit f1734cc

Browse files
committed
move from class to id
1 parent 12e3078 commit f1734cc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

css/custom.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ body {
33
text-align: center;
44
}
55

6-
.logo {
6+
#logo {
77
min-width: 50%;
88
max-width: 80%;
99
}
1010

11-
.headline {
11+
#headline {
1212
font-size: 1.4em;
1313
margin-left: 10%;
1414
margin-right: 10%;

index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<link rel="stylesheet" href="css/custom.css" type="text/css" charset="utf-8">
77
</head>
88
<body>
9-
<img class="logo" src="images/erum.jpg">
10-
<p class="headline">The European R Users Meeting (eRum) is an international conference that aimed at integrating users of the <a href="https://www.r-project.org/">R language</a> in Europe. This multi-day conference is organized in years when the <a href="https://www.r-project.org/conferences.html">useR! conference</a> is hosted outside of Europe: <a href="http://2016.erum.io">2016 in Poznan, Poland</a> and <a href="http://2018.erum.io" onmouseover="document.getElementById('logo').src='images/erum-2018.jpg'" onmouseout="document.getElementById('logo').src='images/erum.jpg'">2018 in Budapest, Hungary</a>.</p>
9+
<img id="logo" src="images/erum.jpg">
10+
<p id="headline">The European R Users Meeting (eRum) is an international conference that aimed at integrating users of the <a href="https://www.r-project.org/">R language</a> in Europe. This multi-day conference is organized in years when the <a href="https://www.r-project.org/conferences.html">useR! conference</a> is hosted outside of Europe: <a href="http://2016.erum.io">2016 in Poznan, Poland</a> and <a href="http://2018.erum.io" onmouseover="document.getElementById('logo').src='images/erum-2018.jpg'" onmouseout="document.getElementById('logo').src='images/erum.jpg'">2018 in Budapest, Hungary</a>.</p>
1111
</body>
1212
</html>

0 commit comments

Comments
 (0)