Created
November 19, 2015 08:17
-
-
Save mamiu/d6a8ee95ae41cc5e6765 to your computer and use it in GitHub Desktop.
Chrome extension improvement for "LEO Dictionary Quick Search Pop-up" (pda.leo.org instead of dict.leo.org)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<style type="text/css"> | |
iframe { | |
border: none; | |
/* Scrolling: no */ | |
overflow: hidden; | |
} | |
#leo { | |
width: 650px; | |
height: 400px; | |
overflow-y: hidden; | |
overflow-x: hidden; | |
position: relative; | |
} | |
#leo iframe { | |
position: absolute; | |
top: -93px; | |
width: 650px; | |
height: 493px; | |
} | |
</style> | |
<title>LEO Dictionary Quick Search Pop-up</title> | |
</head> | |
<body> | |
<div id='leo'><iframe src='http://pda.leo.org'></iframe></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment