-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
styles.css
106 lines (90 loc) · 1.51 KB
/
styles.css
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
@charset "utf-8";
/* CSS Document */
body {
font-family: Arial, sans-serif;
}
h1,
h2,
h3,
h4 {
color: #e0e0e0;
}
label {
color: #ffffff;
display: flex;
}
button {
margin-top: 10px;
padding: 10px 20px;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
.background-image {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
background-image: url("bg.png");
background-size: cover;
background-position: center;
filter: blur(2px);
z-index: -1;
}
.background-darken {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.75);
z-index: -1;
}
.trait-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 10px;
}
.trait {
text-align: left;
background-color: rgba(255, 255, 255, 0.1);
box-shadow: 0px 0px 5px 1px #ebebeb;
padding: 5px;
}
.trait label,
.toggle label {
display: inline-flex;
}
.container {
display: flex;
justify-content: space-between;
max-width: 1200px;
margin: 50px auto;
}
.main-content {
flex-grow: 1;
}
.community-presets {
width: 300px; /* Adjust the width as needed */
margin-left: 20px; /* Space between main content and presets */
border: 1px solid #ccc;
padding: 10px;
}
.community-presets h3 {
margin-top: 0;
}
.community-presets ul {
list-style: none;
padding: 0;
}
.community-presets li {
margin-bottom: 5px;
}