Advertisement
yuch4n

ヒャクニチソウの交配表

Aug 22nd, 2018
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.00 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>ヒャクニチソウの交配表</title>
  4. <style type="text/css">
  5. table {
  6.     border-collapse: collapse;
  7.     border: 1px solid #000;
  8. }
  9. td, th {
  10.     border: 1px solid #000;
  11.     line-height:0;
  12.     width: 40px;
  13.     height: 40px;
  14.     text-align:center;
  15. }
  16. th {
  17.     font-size: 24px;
  18.     background-color: #DDD;
  19. }
  20. td {
  21.     font-size: 12px;
  22. }
  23. th:empty {
  24.    background-image: linear-gradient(45deg, transparent 49%, black 49%, black 51%, transparent 51%, transparent);
  25. }
  26. .red { color: #ff3824 }
  27. .yellow { color: #ffcc00 }
  28. .green { color: #4dd908 }
  29. .blue { color: #2e68ec }
  30. </style>
  31. </head>
  32. <body>
  33. <table>
  34.     <tr>
  35.         <th></th>
  36.         <th class="red">&#x2741;</th>
  37.         <th class="yellow">&#x2741;</th>
  38.         <th class="green">&#x2741;</th>
  39.         <th class="blue">&#x2741;</th>
  40.     </tr>
  41.     <tr>
  42.         <th class="red">&#x2741;</th>
  43.         <td><span class="yellow">&#x2741;</span></td>
  44.         <td><span class="red">&#x2741;</span></td>
  45.         <td><span class="red">&#x2741;</span></td>
  46.         <td><span class="red">&#x2741;</span></td>
  47.     </tr>
  48.     <tr>
  49.         <th class="yellow">&#x2741;</th>
  50.         <td><span class="red">&#x2741;</span></td>
  51.         <td><span class="yellow">&#x2741;</span><span class="green">&#x2741;</span></td>
  52.         <td><span class="yellow">&#x2741;</span></td>
  53.         <td><span class="yellow">&#x2741;</span></td>
  54.     </tr>
  55.     <tr>
  56.         <th class="green">&#x2741;</th>
  57.         <td><span class="red">&#x2741;</span></td>
  58.         <td><span class="yellow">&#x2741;</span></td>
  59.         <td><span class="green">&#x2741;</span><span class="blue">&#x2741;</span></td>
  60.         <td><span class="green">&#x2741;</span></td>
  61.     </tr>
  62.     <tr>
  63.         <th class="blue">&#x2741;</th>
  64.         <td><span class="red">&#x2741;</span></td>
  65.         <td><span class="yellow">&#x2741;</span></td>
  66.         <td><span class="green">&#x2741;</span></td>
  67.         <td><span class="blue">&#x2741;</span></td>
  68.     </tr>
  69. </table>
  70. </body>
  71. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement