Advertisement
IamMeWasTaken

sudo try

Feb 16th, 2020
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. Styling:
  2. .card {
  3. font-family: Meiryo;
  4. font-size: 20px;
  5. text-align: center;
  6. color: black;
  7. background-color: white;
  8. }
  9.  
  10. .card1 {
  11. font-weight: normal;
  12. color: #027702;
  13. }
  14.  
  15. .english {
  16. opacity: 0;
  17. transition-property: opacity;
  18. transition: 0.3s ease-in-out;
  19.  
  20. color: black;
  21. }
  22.  
  23. .english:hover {
  24. opacity: 100;
  25. }
  26.  
  27. .furigana {
  28. color: #027702;
  29. }
  30.  
  31. .Source {
  32. color:#339922
  33. }
  34. ruby rt { visibility: hidden; } ruby:hover rt { visibility: visible; }
  35. Back:
  36. <div class="back"> </div>
  37. <div style="text-align:center;;position: absolute;top: 0; left: 0; bottom: 0; right: 0;">
  38. <span style=color:black>
  39. <br>
  40. 出所</span>:<span style=color:#339922"> {{Source}}</span>
  41. <br>
  42. <img src="{{Snapshot}}"
  43. <br>
  44. <div class="furigana" style="text-align: center;font-size: 40px;">
  45. {{furigana:Furigana}}
  46. </div>
  47. <div style='font-size: 22px;text-align: center'>
  48. {{furigana:Back}}
  49. </div>
  50. <div class="english" style='font-size: 20px;text-align: center'>
  51. {{English}}
  52. </div>
  53. <br>
  54. <div class="english" style='font-size: 20px;text-align: right'>
  55. {{Morpheme}}
  56. </div>
  57. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement