Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

_dragondisplay.scss 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .dragondisplay {
  2. position: relative;
  3. background: rgb(255, 255, 255);
  4. background: linear-gradient(184deg,
  5. rgba(255, 255, 255, 1) 4%,
  6. rgba(235, 255, 133, 1) 100%);
  7. overflow: hidden;
  8. .dragondisplay_heading {
  9. position: absolute;
  10. bottom: 0;
  11. margin: auto;
  12. width: 100%;
  13. >h1 {
  14. font-size: 8rem;
  15. text-align: center;
  16. }
  17. }
  18. .dragondisplay_des {
  19. max-width: 600px;
  20. position: absolute;
  21. right: 0;
  22. top: 13%;
  23. padding: 4rem;
  24. }
  25. }
  26. @media (max-width:1200px) {
  27. .dragondisplay{
  28. .dragondisplay_heading{
  29. >h1 {
  30. font-size: 4rem;
  31. text-align: center;
  32. }
  33. }
  34. }
  35. }
  36. @media (max-width:768px) {
  37. .dragondisplay{
  38. .dragondisplay_heading{
  39. >h1 {
  40. font-size: 3rem;
  41. text-align: center;
  42. }
  43. }
  44. }
  45. }
  46. @media (max-width:576px) {
  47. .dragondisplay{
  48. .dragondisplay_heading{
  49. >h1 {
  50. font-size: 1.5rem;
  51. text-align: center;
  52. }
  53. }
  54. }
  55. }