Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. // Define CSS properties
  2. const emptyStyle: React.CSSProperties = {
  3. height: "100%",
  4. display: "flex",
  5. flexDirection: "column",
  6. alignItems: "center",
  7. justifyContent: "center",
  8. textAlign: "center",
  9. background: "rgba(136, 85, 255, 0.25)",
  10. overflow: "hidden",
  11. zIndex: -1
  12. };
  13.  
  14. const titleStyle: React.CSSProperties = {
  15. fontWeight: 400,
  16. lineHeight: "1.8em",
  17. color: "#8855FF",
  18. margin: 0,
  19. padding: 0
  20. };
  21.  
  22. const paragraphStyle: React.CSSProperties = {
  23. fontWeight: 600,
  24. color: "#8855FF",
  25. margin: 0,
  26. padding: 0
  27. };
  28.  
  29. const container: React.CSSProperties = {
  30. margin: "0 auto",
  31. width: 343,
  32. backgroundColor: "white",
  33. padding: "16px 20px",
  34. marginBottom: "16px",
  35. borderRadius: 12,
  36. boxShadow: "0px 4px 16px rgba(0, 0,0,.2)",
  37. display: "flex"
  38. };
  39.  
  40. const img: React.CSSProperties = {
  41. width: 50,
  42. height: 50,
  43. borderRadius: 8,
  44. marginRight: 20,
  45. backgroundColor: "grey"
  46. };
  47.  
  48. const title: React.CSSProperties = {
  49. fontSize: 20,
  50. fontWeight: "bold"
  51. };
  52.  
  53. const text: React.CSSProperties = {
  54. marginTop: 5,
  55. fontSize: 14,
  56. lineHeight: 1.5
  57. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement