summaryrefslogtreecommitdiff
path: root/beauty.css
blob: 3d975039be963a0602e4237e6b2f092561afd55b (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
.list {
  /*border: 3px solid transparent;
  border-radius: 5px;
  backdrop-filter: blur(1px) brightness(80%);
  padding: 5px;
  //width: max-content;*/
  display: flex;
  justify-content: center;
}
.list div {
  border: 3px solid transparent;
  border-radius: 5px;
  backdrop-filter: blur(1px) brightness(90%);
  -webkit-backdrop-filter: blur(1px) brightness(80%);
  padding: 5px;
}
.list div .TOOD {
  text-align: center;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.grid {
  letter-spacing: 0px;
  display: flex;
  justify-content: center;
  display: grid;
  grid-template-columns: 300px 300px 300px;
  gap: 20px;
}
.grid .title {
  border: transparent solid 10px;
  border-radius: 5px;
  text-align: center;
  padding: 3px;
  max-width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.2s ease-in-out;
}
.grid .title:hover {
  backdrop-filter: blur(5px) brightness(80%);
  -webkit-backdrop-filter: blur(5px) brightness(80%);
  transition: 0.2s ease-in-out;
}
.grid .image {
  border-radius: 5px;
  overflow: hidden;
  height: 150px;
  width: auto;
}
.grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  justify-content: center;
}

.center_img {
  overflow: hidden;
  width: 400px;
  padding: 5px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.center_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.license {
  display: flex;
  justify-content: center;
  width: auto;
}
.license div {
  border: 3px solid transparent;
  border-radius: 5px;
  padding: 5px;
  max-width: max-content;
  text-align: center;
  backdrop-filter: blur(1px) brightness(80%);
  -webkit-backdrop-filter: blur(1px) brightness(80%);
  transition: 0.2s ease-in-out;
}
.license div:hover {
  backdrop-filter: blur(5px) brightness(60%);
  -webkit-backdrop-filter: blur(5px) brightness(60%);
  transition: 0.2s ease-in-out;
}
.license div a {
  color: white;
}

.text {
  border: transparent solid 10px;
  border-radius: 5px;
  padding: 3px;
  backdrop-filter: blur(5px) brightness(80%);
  -webkit-backdrop-filter: blur(5px) brightness(80%);
  color: white;
}

.title {
  font-size: 18px;
}

@font-face {
  font-family: "Prompt";
  src: url("/resources/Fonts/Prompt/Prompt-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
html {
  height: 100vh;
}

body {
  text-align: center;
  justify-content: center;
  width: 90%;
  max-width: auto;
  margin: 2em auto;
  font: 18px "Prompt";
  letter-spacing: -1px;
  background-image: url("resources/bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-attachment: fixed;
}
body a:link {
  color: silver;
}
body a:visited {
  color: aqua;
}
body a:hover {
  color: white;
}

/*main {
	border: transparent solid 10px;
	border-radius: 5px;
	padding: 3px;
	backdrop-filter: blur(5px) brightness(80%);
}*/
header {
  text-align: center;
}
header .subheader {
  font-style: italic;
  font-size: 25px;
}

/*# sourceMappingURL=beauty.css.map */