Advertisement
Guest User

CamminCustomCSS

a guest
Oct 13th, 2019
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.07 KB | None | 0 0
  1. @keyframes headerRotate {
  2.   0% { transform: rotate(-2deg); }
  3. 100% { transform: rotate(2deg); }
  4. }
  5.  
  6. body{
  7.   cursor: url("https://i.imgur.com/Fn7sCsU.png"), auto;
  8.   text-shadow: 1px 1px #000000;
  9. }
  10.  
  11. a{
  12.   cursor: url("https://i.imgur.com/IR9pTRl.png"), auto;
  13.   font-size: 20px;
  14. }
  15.  
  16. .header {
  17.   animation: headerRotate 5s ease-in-out alternate infinite;
  18. }
  19.  
  20. .user_profile.formatted {
  21. font-size: 2em;
  22. }
  23.  
  24. .user_page .purchased_games h2 a, .user_page .collection_row h2 a {
  25.     font-size: 2em;
  26.     font-weight: normal;
  27. }
  28.  
  29. .game_grid_widget .game_cell .game_thumb :hover  {
  30.   box-shadow: 1px 0px 5px 6px white;
  31. }
  32.  
  33.  
  34. .game_grid_widget .game_cell {
  35.    text-align: center;
  36. }
  37.  
  38. .game_thumb {
  39. border: 1.5px solid dimgrey;
  40. border-radius: 25px;
  41. }
  42.  
  43. .carousel_wrapper{
  44. padding-bottom: 20px;
  45. }
  46.  
  47. .inner_column {
  48. text-align: center;
  49. background-color: rgba(0, 0, 0, 0.5);
  50. padding-bottom: 1px;
  51. padding-top: 10px;
  52. border-radius: 20px;
  53. }
  54.  
  55. .user_page .user_profile.formatted {
  56.     font-size: 25px;
  57. }
  58.  
  59. .user_page .user_profile.formatted a {
  60.     font-size: 25px;
  61. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement