Jump to content

User:Anna Aviation/common.css

From Wikipedia, the free encyclopedia
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
/* CSS will applied here to all skins */

@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');

body {
    font-family: 'Ubuntu', sans-serif !important
}

.ns-talk {
    font-family: "Ubuntu", sans-serif;
}

/* Set the font properties for body text */
body {
    font-family: "Ubuntu", sans-serif; 
    font-size: 16px;
    font-weight: 400; 
    text-align: left; 
}

/* Resizable container */
.resizable-container {
    resize: both; 
    overflow: auto; 
    width: 300px; 
    height: 200px; 
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px; 
    font-weight: 400; 
    -webkit-font-smoothing: antialiased; 
}

blockquote {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
    border-left: 4px solid #0073e6;
    padding: 10px 20px;
    margin: 20px 0;
    background: #f9f9f9;
}

blockquote p {
    margin: 0;
}

blockquote::before {
    content: "“";
    font-size: 2rem;
    color: #0073e6;
    font-weight: bold;
    margin-right: 5px;
}

blockquote::after {
	content: "“";
    font-size: 2rem;
    color: #0073e6;
    font-weight: bold;
    margin-left: 5px;
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Tooltip text */
.tooltip::after {
  content: attr(data-tooltip);  
  position: absolute;
  width: 180px; 
  background-color: rgba(0, 0, 0, 0.8); 
  color: #fff;
  text-align: center;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  
  /* Positioning */
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}