diff options
Diffstat (limited to 'bookmarks/styles.css')
| -rw-r--r-- | bookmarks/styles.css | 162 |
1 files changed, 162 insertions, 0 deletions
diff --git a/bookmarks/styles.css b/bookmarks/styles.css new file mode 100644 index 0000000..6c56161 --- /dev/null +++ b/bookmarks/styles.css @@ -0,0 +1,162 @@ +<style>
+.button {
+ border: none;
+ color: white;
+ text-decoration: none;
+ display: inline-block;
+ font-size: 16px;
+ margin: 4px 70px;
+ cursor: pointer;
+ width: 200px;
+ text-align: left;
+ margin: 0;
+ padding: 0;
+}
+
+.button1 {
+ background-color: black;
+ font-family: Comic Sans MS;
+ font-weight: 300;
+}
+
+h1 {
+ font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
+ font-size: 30px;
+ padding-left: 40px;
+}
+
+pre {
+ font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
+ font-size: 12px;
+ padding-left: 40px;
+}
+
+nav {
+ float: left;
+ width: 100%; /* Full width for links alignment */
+ padding: 20px;
+ box-sizing: border-box; /* Ensure padding is included in width */
+}
+
+.links {
+ display: flex;
+ flex-direction: column; /* Align links in a column */
+ gap: 10px; /* Space between links */
+}
+
+.links .link {
+ text-decoration: none;
+ color: white;
+ background-color: black;
+ padding: 10px 15px;
+ border-radius: 4px;
+ transition: background-color 0.3s;
+ display: block; /* Ensure links take full width */
+ width: 100%; /* Full width */
+ text-align: left; /* Align text to the left */
+ max-width: 300px; /* Optional: Max width for each link */
+}
+
+.links .link:hover {
+ background-color: #333; /* Darker background on hover */
+}
+
+body {
+ background-color: #fff5f7;
+ margin: 0; /* Remove default margin */
+}
+
+.container {
+ margin: 20px auto;
+ max-width: 800px; /* Max width for the container */
+ padding: 20px;
+ background-color: #f0f0f0;
+ border-radius: 8px;
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
+}
+
+iframe {
+ display: block;
+ height: 100vh;
+ width: 100vw;
+ border: none;
+ background: #fff5f7;
+}
+
+#design-cast {
+ position: relative;
+ overflow: hidden;
+}
+
+.member {
+ float: left;
+ width: 20%;
+ margin: 1% 1% 45px 1%;
+}
+
+.name {
+ bottom: 0px;
+}
+
+.member img {
+ width: 50%;
+ display: block;
+}
+
+ul.flowxl {
+ display: flex;
+ flex-wrap: wrap;
+ padding: 0;
+}
+
+ul.flowxl > li {
+ list-style-type: none;
+ text-align: center;
+ width: var(--xiconsize);
+ min-width: var(--xiconsize);
+ max-width: var(--xiconsize);
+ max-height: calc(var(--xiconsize) + 60px);
+ padding: 2px;
+ margin: 2px;
+ overflow: hidden;
+ font-size: 1rem;
+ line-height: 1;
+}
+
+ul.flowxl > li > a {
+ display: block;
+ vertical-align: middle;
+ line-height: 1;
+ font-size: 1.2rem;
+}
+
+ul.flowxl li > a > img,
+ul.flowxl li > img {
+ display: block;
+ border-radius: 9px;
+ width: auto;
+ max-width: var(--xiconsize);
+ max-height: var(--xiconsize);
+ overflow: hidden;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+ul.flowxl li > a > img[src$="svg"] {
+ max-width: 170px;
+ max-height: 170px;
+}
+
+table {
+ overflow: auto;
+}
+
+p, a, li, figcaption, div, span {
+ overflow-wrap: anywhere;
+}
+
+.content {
+ margin-left: 0; /* Ensure no extra margin is added */
+}
+
+</style>
\ No newline at end of file |
