-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
113 lines (93 loc) · 2.64 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
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
html, body {
margin: 0;
padding: 0;
height: 100%;
font-family: 'Rubik', sans-serif;
background-color: #EEF0F4;
color: #432000;
user-select: none;
background: hsla(298, 68%, 90%, 1);
background: linear-gradient(90deg, hsla(298, 68%, 90%, 1) 0%, hsla(30, 82%, 91%, 1) 100%);
background: -moz-linear-gradient(90deg, hsla(298, 68%, 90%, 1) 0%, hsla(30, 82%, 91%, 1) 100%);
background: -webkit-linear-gradient(90deg, hsla(298, 68%, 90%, 1) 0%, hsla(30, 82%, 91%, 1) 100%);
filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#F6D5F7", endColorstr="#FBE9D7", GradientType=1 );
background-repeat: no-repeat;
}
#title {
font-size: 60px;
text-align: center;
font-family: 'Croissant One', cursive;
}
.container {
display: flex;
flex-direction: column;
max-width: 380px;
margin: 30px auto;
}
img {
width: 150px;
margin: 0 auto;
}
.glassmorphism {
background: hsla(298, 68%, 90%, 1);
background: linear-gradient(90deg, hsla(298, 68%, 90%, 1) 0%, hsla(30, 82%, 91%, 1) 100%);
background: -moz-linear-gradient(90deg, hsla(298, 68%, 90%, 1) 0%, hsla(30, 82%, 91%, 1) 100%);
background: -webkit-linear-gradient(90deg, hsla(298, 68%, 90%, 1) 0%, hsla(30, 82%, 91%, 1) 100%);
filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#F6D5F7", endColorstr="#FBE9D7", GradientType=1 );
background-repeat: no-repeat;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border-radius: 20px;
border: 1px solid hsla(298, 68%, 90%, 1);
box-shadow: 0 8px 32px 0 rgba(0,0,0,0.37);
padding: 20px;
}
input {
padding: 15px;
border-radius: 10px;
color: #432000;
background-color: #DCE1EB;
border: none;
font-size: 20px;
text-align: center;
font-family: 'Rubik', sans-serif;
margin: 10px 0;
font-family: 'Mooli', sans-serif;
}
button {
padding: 15px;
border-radius: 10px;
color: #FDFDFD;
background-color: #AC485A;
border: none;
font-size: 20px;
text-align: center;
font-family: 'Rubik', sans-serif;
margin: 10px 0;
font-family: 'Mooli', sans-serif;
}
button:hover {
background-color: #432000;
cursor: pointer;
}
ul {
list-style-type: none;
padding: 0;
display: flex;
flex-wrap: wrap;
gap: 10px;
font-family: 'Mooli', sans-serif;
}
ul li {
font-size: 20px;
background-color: #FFFDF8;
padding: 15px;
border-radius: 8px;
flex-grow: 1;
text-align: center;
box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2)
}
ul li:hover {
background-color: #FFECC7;
cursor: pointer;
}