-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCard.module.css
More file actions
101 lines (90 loc) · 2.16 KB
/
Card.module.css
File metadata and controls
101 lines (90 loc) · 2.16 KB
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
::root {
--sky-400: #38bdf8;
--indigo-300: #a5b4fc;
}
.wrapper {
font-size: 1rem;
display: flex;
flex-direction: row;
/* height: 50%; */
}
.cardAndButtonHolder {
width: 23%;
display: flex;
flex-direction: column;
align-items: center;
margin: 25px;
height: 80%;
}
.mainCard {
background: rgba(251, 251, 251, 0.9);
/* background: rgba(253, 253, 253, 0.91); */
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);
border-radius: 5px;
border: 1px solid rgba(255, 255, 255, 0.18);
overflow-y: scroll;
width: 300px;
overflow-wrap: break-word;
hyphens: auto;
height: 500px;
/* min-height: 500px;
max-height: 500px; */
}
::-webkit-scrollbar {
width: 0.5rem;
background-color: white;
border-radius: 20px;
/* left: 0; */
}
::-webkit-scrollbar-thumb {
background: #38bdf8;
border-radius: 20px;
}
::-webkit-scrollbar-track {
background-color: rgba(56, 189, 248, 0.25);
}
.selector {
font-size: 1rem;
background: linear-gradient(45deg, #a5b4fc 0%, #38bdf8 100%);
/* background: radial-gradient(circle, #38bdf8 0%, #a5b4fc 100%); */
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
backdrop-filter: blur(15px);
-webkit-backdrop-filter: blur(15px);
border-radius: 0.5rem;
border: 1px solid rgba(255, 255, 255, 0.18);
margin: 1rem;
color: white;
padding: 0.5rem 1rem;
font-weight: 600;
margin: 0;
margin-top: 1rem;
overflow-wrap: break-word;
max-height: 20%;
}
.infoBlock {
padding-left: 0.5rem;
padding-bottom: 1rem;
list-style: square;
}
.infoBlock h3,
.infoBlock h4 {
text-transform: uppercase;
/* background: linear-gradient(45deg, #a5b4fc 0%, #38bdf8 100%); */
margin-right: 2em;
color: linear-gradient(45deg, #a5b4fc 0%, #38bdf8 100%);
background: -webkit-linear-gradient(#38bdf8, rgb(60 74 88));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.list {
list-style: square;
padding-left: 1rem;
}
li a:hover {
color: linear-gradient(45deg, #a5b4fc 0%, #38bdf8 100%);
background: -webkit-linear-gradient(#38bdf8, rgb(60 74 88));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}