-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
69 lines (67 loc) · 1.3 KB
/
style.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
body {
/* background: linear-gradient(130deg, #ac1a2a, #1f1fb2 41.07%, #bb2dfd 76.05%); */
background-color: #A1D6E2;
color: black;
min-height: 100vh;
margin: 0;
font-family: 'Poppins', sans-serif;
}
.title{
font-size: 60px;
display: flex;
color:#063852;
justify-content: center;
}
.title img{
width:100px;
margin-right: 20px;
}
.container {
margin: 3.5vw;
min-height: 350px;
background-color: #1995AD;
border-style: solid;
border-width: 0px;
border-color: rgba(190, 190, 190, 0.3);
border-radius: 10px;
backdrop-filter: blur(20px);
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.card {
text-align: center;
margin: 2.0vw;
padding: 0.5vw;
min-height: 5vw;
width: 20vw;
height: 300px;
background-color: #A1D6E2;
box-shadow: -2rem 0 3rem -2rem #000;
color: black;
border-style: solid;
border-width: 0px;
border-color: #3333;
border-radius: 10px;
backdrop-filter: blur(10px);
font-family: 'Poppins', sans-serif;
flex-grow: 1;
flex-shrink: 1;
word-wrap: break-word;
overflow: hidden;
text-overflow: ellipsis;
transition: .3s ease all;
}
.card a{
text-decoration: none;
color: black;
}
.card img{
display: block;
margin:20px auto;
width:120px;
color: #063852;
}
.card:hover {
transform: scale(1.03);
}