|
| 1 | +.emojiCard { |
| 2 | + display: flex; |
| 3 | + align-items: center; |
| 4 | + justify-content: center; |
| 5 | + flex-direction: column; |
| 6 | + width: 170px; |
| 7 | + height: 170px |
| 8 | +} |
| 9 | + |
| 10 | +h3 { |
| 11 | + color: white; |
| 12 | + text-align: center; |
| 13 | + font-family: serif; |
| 14 | +} |
| 15 | +.noMatches { |
| 16 | + width: 100vw; |
| 17 | +} |
| 18 | +.navbar-nav, .nav-item { |
| 19 | + display: inline-block; |
| 20 | +} |
| 21 | +.nav-link { |
| 22 | + cursor: pointer; |
| 23 | +} |
| 24 | +.nav-item { |
| 25 | + margin: 5px; |
| 26 | +} |
| 27 | +.heading { |
| 28 | + text-align: center; |
| 29 | + color: white; |
| 30 | + margin-top: 2.5em; |
| 31 | +} |
| 32 | +p { |
| 33 | + font-size: initial; |
| 34 | + position: absolute; |
| 35 | + z-index: 1; |
| 36 | + bottom: 0px; |
| 37 | + left: 4px; |
| 38 | + padding: 4px !important; |
| 39 | + border-radius: 5px 5px 5px 5px; |
| 40 | + font-weight: bolder; |
| 41 | + background-color: rgba(0, 119, 255, .2); |
| 42 | + color: #07f; |
| 43 | +} |
| 44 | +.modal-body { |
| 45 | + text-align: center; |
| 46 | +} |
| 47 | +.card { |
| 48 | + cursor: pointer; |
| 49 | + border-radius: 8px 8px 8px 8px; |
| 50 | + box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset !important; |
| 51 | + background-color: rgb(39, 37, 37) !important; |
| 52 | +} |
| 53 | +.emojiCard:active { |
| 54 | + box-shadow: 0 5px #666; |
| 55 | + transform: translateY(4px); |
| 56 | +} |
| 57 | +input { |
| 58 | + border-top: none !important; |
| 59 | + border-left: none !important; |
| 60 | + border-right: none !important; |
| 61 | + box-shadow: none!important; |
| 62 | + outline: none !important; |
| 63 | + color: white !important; |
| 64 | + border-radius: none !important; |
| 65 | + border-bottom-color: white !important; |
| 66 | + background-color: rgb(0, 0, 0) !important; |
| 67 | +} |
| 68 | +.emoji { |
| 69 | + font-size: 1.5em; |
| 70 | + color: white; |
| 71 | +} |
| 72 | +.input-group-text { |
| 73 | + background-color: black !important; |
| 74 | + border: none; |
| 75 | +} |
| 76 | +i { |
| 77 | + color: white; |
| 78 | +} |
| 79 | +.navbar { |
| 80 | + box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset !important; |
| 81 | + background-color: rgb(39, 37, 37); |
| 82 | +} |
| 83 | +.nav-link { |
| 84 | + color: white!important; |
| 85 | +} |
| 86 | +.aboutLink{ |
| 87 | + color: rgb(163, 163, 163) !important |
| 88 | +} |
| 89 | +.aboutLink:active{ |
| 90 | + color: white!important; |
| 91 | +} |
| 92 | +.fade-in { |
| 93 | + animation: fadeIn ease 0.6s; |
| 94 | + -webkit-animation: fadeIn ease 0.6s; |
| 95 | + -moz-animation: fadeIn ease 0.6s; |
| 96 | + -o-animation: fadeIn ease 0.6s; |
| 97 | + -ms-animation: fadeIn ease 0.6s; |
| 98 | +} |
| 99 | +@keyframes fadeIn { |
| 100 | + 0% { |
| 101 | + opacity: 0; |
| 102 | + } |
| 103 | + 100% { |
| 104 | + opacity: 1; |
| 105 | + } |
| 106 | +} |
| 107 | +@-moz-keyframes fadeIn { |
| 108 | + 0% { |
| 109 | + opacity: 0; |
| 110 | + } |
| 111 | + 100% { |
| 112 | + opacity: 1; |
| 113 | + } |
| 114 | +} |
| 115 | +@-webkit-keyframes fadeIn { |
| 116 | + 0% { |
| 117 | + opacity: 0; |
| 118 | + } |
| 119 | + 100% { |
| 120 | + opacity: 1; |
| 121 | + } |
| 122 | +} |
| 123 | +@-o-keyframes fadeIn { |
| 124 | + 0% { |
| 125 | + opacity: 0; |
| 126 | + } |
| 127 | + 100% { |
| 128 | + opacity: 1; |
| 129 | + } |
| 130 | +} |
| 131 | +@-ms-keyframes fadeIn { |
| 132 | + 0% { |
| 133 | + opacity: 0; |
| 134 | + } |
| 135 | + 100% { |
| 136 | + opacity: 1; |
| 137 | + } |
| 138 | +} |
0 commit comments