main.css 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. @font-face {
  2. font-family: "NotoSansCJKsc";
  3. font-weight: normal;
  4. font-style: normal;
  5. src: url("../Fonts/NotoSansCJKsc-DemiLight.otf");
  6. }
  7. @font-face {
  8. font-family: "NotoMono";
  9. font-weight: normal;
  10. font-style: normal;
  11. src: url("../Fonts/NotoMono.woff") format ("woff");
  12. }
  13. @font-face {
  14. font-family: "NotoSerif";
  15. font-weight: normal;
  16. font-style: normal;
  17. src: url("../Fonts/NotoSerif.woff") format ("woff");
  18. }
  19. h1 {
  20. font-size: 40px;
  21. }
  22. h2 {
  23. font-size: 30px;
  24. color: black;
  25. background-color: lightblue;
  26. }
  27. h3 {
  28. font-size: 22px;
  29. color: black;
  30. background-color: #79DCFC;
  31. padding: 5px;
  32. }
  33. body {
  34. font-size: 20px;
  35. font-family: "NotoSerif", serif;
  36. font-weight: normal;
  37. font-style: serif;
  38. }
  39. ul {
  40. font-size: 20px;
  41. }
  42. ol {
  43. font-size: 20px;
  44. }
  45. dt {
  46. font-style: italic;
  47. }
  48. h1, h2, h3 {
  49. text-align: center;
  50. }
  51. .hanzist {
  52. color: coral;
  53. font-size: 30px;
  54. font-family: "NotoSansCJKsc";
  55. }
  56. .hanzi {
  57. color: darkred;
  58. font-size: 22px;
  59. font-family: "NotoSansCJKsc";
  60. }
  61. .pinyin {
  62. color: blue;
  63. }
  64. .pinyinst {
  65. color: blue;
  66. font-size: 30px;
  67. }
  68. .un {
  69. font-size: 22px;
  70. text-align: center;
  71. background-color: lightblue;
  72. border-style: solid;
  73. border-width: 1px;
  74. margin: auto;
  75. width: 50%;
  76. padding: 30px 30px 30px 30px;
  77. }
  78. .deux {
  79. font-size: 30px;
  80. text-align: center;
  81. background-color: lightblue;
  82. border-style: solid;
  83. border-width: 1px;
  84. margin: auto;
  85. width: 70%;
  86. padding: 30px 30px 30px 30px;
  87. }
  88. .exemple {
  89. margin-left: 30px;
  90. background-color: lightyellow;
  91. border: 1px;
  92. border-style: solid;
  93. margin-bottom:15px;
  94. margin-top: 15px;
  95. padding: 15px;
  96. }
  97. .contents {
  98. margin-left: 30px;
  99. background-color: #f6f6f6;
  100. padding: 15px;
  101. border-radius: 10px;
  102. }
  103. .See-also {
  104. margin-left: 30px;
  105. background-color: lightyellow;
  106. }
  107. .encadrejaune {
  108. border-style: solid;
  109. border-color: yellow;
  110. border-width: 1px;
  111. }
  112. .encadrevert {
  113. border-style: solid;
  114. border-color: green;
  115. border-width: 1px;
  116. }
  117. .encadrenoir {
  118. border-style: solid;
  119. border-color: black;
  120. border-width: 1px;
  121. }
  122. .encadrerouge {
  123. border-style: solid;
  124. border-color: red;
  125. border-width: 1px;
  126. }
  127. .rouge {
  128. color: red;
  129. }
  130. .orange {
  131. color: orange;
  132. }
  133. .pgris {
  134. color: #D1D1D1;
  135. }
  136. .rose {
  137. color: #CE90D4;
  138. }
  139. .jaune {
  140. color: yellow;
  141. }
  142. .vert {
  143. color: green;
  144. }
  145. .gris {
  146. background-color: lightgrey;
  147. padding: 10px;
  148. }
  149. .grisleger {
  150. background-color: AntiqueWhite;
  151. padding: 10px;
  152. }
  153. .fondjaune {
  154. background-color: yellow;
  155. }
  156. .grisgros {
  157. background-color: lightgrey;
  158. font-size: 140%;
  159. padding: 20px;
  160. }
  161. table {
  162. background-color:#E9F0F2 ;
  163. color: black;
  164. width: 90%;
  165. margin-left: 50px;
  166. margin-top: 10px;
  167. margin-bottom: 10px;
  168. border-collapse: collapse;
  169. border: 1px solid black;
  170. }
  171. table, td, th {
  172. border: 1px solid #ddd;
  173. text-align: left;
  174. padding: 15px;
  175. }
  176. table th {
  177. background-color: lightgrey;
  178. color: black;
  179. }
  180. .clue {
  181. border: 1px solid red;
  182. border-radius: 15px;
  183. background-color: lightgrey;
  184. }
  185. .table1 th {
  186. text-align: center;
  187. background-color: lightgrey;
  188. color: white;
  189. }
  190. .table1 th, td {
  191. border-bottom: 1px solid #ddd;
  192. text-align: center;
  193. }
  194. .table1 tr:nth-child(even) {
  195. background-color: #f2f2f2
  196. }
  197. .table2 th {
  198. text-align: center;
  199. background-color: #4CAF50;
  200. }
  201. .table2 td {
  202. text-align: center;
  203. }
  204. .block1 {
  205. display: block;
  206. }
  207. .image {
  208. margin-top: 150px;
  209. text-align: center;
  210. }
  211. .centree {
  212. text-align: center;
  213. }
  214. .resume {
  215. background-color: lightgrey;
  216. border: 1px solid black;
  217. border-radius: 15px;
  218. margin: 10px;
  219. padding: 10px;
  220. }
  221. .titreexemple {
  222. color: grey;
  223. }
  224. .entete {
  225. width: 15%;
  226. text-align: left;
  227. color: blue;
  228. }
  229. .corps {
  230. text-align: left;
  231. }
  232. .expressions {
  233. text-align: left;
  234. }
  235. .gauche {
  236. text-align: left;
  237. font-size: 120%;
  238. background-color: lightgrey;
  239. color: green;
  240. width: 15%;
  241. vertical-align: top;
  242. }
  243. .gauche1 {
  244. text-align: left;
  245. font-size: 120%;
  246. background-color: #E9F0F2;
  247. color: green;
  248. width: 15%;
  249. vertical-align: top;
  250. }
  251. .droite {
  252. text-align: left;
  253. }
  254. .moncar {
  255. text-align: left;
  256. width: 20%;
  257. vertical-align: top;
  258. background-color: #E9F0F2;
  259. }
  260. .lecar {
  261. width: 100%;
  262. }
  263. .flex-container {
  264. display: flex;
  265. flex-wrap: nowrap;
  266. justify-content: space-around;
  267. }
  268. .flex-container1 {
  269. display: flex;
  270. flex-direction: column;
  271. background-color:#E9F0F2 ;
  272. }