From Clomosy Docs

Revision as of 11:17, 10 September 2024 by ClomosyManager (talk | contribs)

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
/* CSS placed here will be applied to all skins */

/*#toc {float:right;margin:0 0 1em 1em;position:fixed;top:100px;right:10px;};*/

/* tartışma sekmesi kaldırma kodu*/
#ca-talk { display: none !important; }

/* Geçmişi görüntüle/Geçmiş sekmesi kaldırma kodu*/
#ca-history { display: none !important;}

/* Kaynak sekmesini görüntüle; bu sekme, sayfaları düzenleme izni olmayan kullanıcı gruplarına ait olan kullanıcılar tarafından kullanılabilir. Bununla kullanıcı, sayfanın kaynak metnini değiştiremeden görüntüleyebilir.*/
#ca-viewsource { display: none !important; }


/* Grid yapısı oluşturma*/
.tutorialsWrapper {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* responsive sütunlu grid */
    align-items: stretch;
}

.card {
    position: relative;
    padding: 20px;
    background-color: #f2f2f4;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 4px;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    font-size: 1.5em;
    font-weight: bold;
    color: #00b282;
}

.card-subtitle {
    font-size: 1.2em;
    color: #757575;
}

.card-description {
    color: #004d40;
    margin-top: 10px;
}

.card-link a {
    color: #1e88e5;
    text-decoration: none;
    font-weight: bold;
}

.card-link a:hover {
    text-decoration: underline;
}

.large-number {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 5em;
    color: #dddddd;
    font-weight: bold;
}
.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
  border-radius: 0.25rem;
}
.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

/* Açılır menüyü gizle 
.dropdown-content {
  display: none;
}*/

/* Yan çubuk ve içerik bölgesini düzenleme */
/*.sidebar {
  float: left;
  width: 45%; /* Yan çubuk genişliği 
}
#content {
  float: left;
}*/