-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
executable file
·117 lines (103 loc) · 2.73 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
114
115
116
117
@import url('https://rsms.me/inter/inter.css');
html {
font-family: 'Inter', sans-serif;
}
body {
margin: 0;
background: #EBECF0;
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
a {
color: rgb(56,59,64, 1);
text-decoration: none;
font-weight: 700;
}
a:hover {
border-bottom: 2px solid rgb(56,59,64, 1);
}
::placeholder {
color: #ccc;
}
h1 {
font-weight: 700;
font-size: 20px;
text-align: center;
margin: 0 0 32px 0;
}
.container {
margin-top: -64px;
}
#input {
width: 400px;
background: linear-gradient(352.64deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 105.18%), #EBECF0;
background-blend-mode: soft-light, normal;
border: 0.25px solid rgba(255, 255, 255, 0.502431);
box-sizing: border-box;
box-shadow: inset 10px 10px 20px rgba(166, 171, 189, 0.32), inset -10px -10px 20px #FAFBFF;
border-radius: 16px;
font-size: 32px;
padding: 24px 32px;
outline: none;
margin: 0;
}
.icon {
width: 64px;
height: 64px;
font-size: 32px;
background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 100%), #EBECF0;
background-blend-mode: soft-light, normal;
border: 1px solid rgba(255, 255, 255, 0.16);
box-sizing: border-box;
box-shadow: 10px 10px 20px rgba(166, 171, 189, 0.32), -10px -10px 40px rgba(250, 251, 255, 0.6);
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
position: fixed;
top: 32px;
left: calc(50% - 32px);
}
.footer {
width: 100%;
display: flex;
justify-content: center;
position: fixed;
bottom: 32px;
left: 0;
}
.footer p {
margin: 0;
color: rgb(56,59,64, 0.5);
font-weight: 600;
}
.color {
width: 100px;
height: 100px;
background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 100%), #EBECF0;
background-blend-mode: soft-light, normal;
border: 1px solid rgba(255, 255, 255, 0.16);
box-sizing: border-box;
box-shadow: 10px 10px 20px rgba(166, 171, 189, 0.32), -10px -10px 40px rgba(250, 251, 255, 0.6);
border-radius: 16px;
margin: 0 auto 32px auto;
}
.button-again {
background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(255, 255, 255, 0.4) 100%), #EBECF0;
background-blend-mode: soft-light, normal;
border: 1px solid rgba(255, 255, 255, 0.16);
box-sizing: border-box;
box-shadow: 10px 10px 20px rgba(166, 171, 189, 0.32), -10px -10px 40px rgba(250, 251, 255, 0.6);
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
padding: 16px 24px;
margin-top: 64px;
}
.button-again:hover {
border-bottom: none;
}