summaryrefslogtreecommitdiff
path: root/bookmarks/styles.css
blob: 6c561610f9a6d72b3e92a914987eb2d305a93cf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
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>