-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (99 loc) · 2.4 KB
/
style.css
File metadata and controls
102 lines (99 loc) · 2.4 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
102
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
@font-face {
font-family: MuseoSans-700;
src: url("/fonts/MuseoSans-700.woff");
}
* {
font-family: 'MuseoSans-700', sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
list-style: none;
scroll-behavior: smooth;
}
.ai{
background-color: #e81932!important;
min-height: calc(100vh - 60px) ;
font-family: sans-serif;
padding: 10em 10em;
color: #fff;
background-position: center;
background-repeat: no-repeat;
background-position: 100% 20%;
background-size: cover;
display: flex;
align-items: center;
justify-content: center;
}
.glass {
width: 500px;
height: 32 0px;
background-color: #232B38;
padding: 50px;
border-radius: 9px;
border: 1px solid red;
background-clip: padding-box;
box-shadow: 5px 5px 5px red;
line-height: 1.5;
transform: translatey(-5%);
transition: transform 0.5s;
}
.glass-1 {
width: 500px;
height: 400px;
background-color: #232B38;
padding: 50px;
color: rgb(122, 82, 82);
border-radius: 9px;
backdrop-filter: blur(50px);
border: 2px solid transparent;
background-clip: padding-box;
box-shadow: 10px 10px 10px rgba(45, 55, 68, 0.3);
line-height: 1.5;
transform: translatey(-5%);
transition: transform 0.5s;
font-size: 1.7rem;
}
.glass h1 {
font-size: 24px;
text-align: center;
}
.glass h2 {
font-size: 1rem;
margin-top: 16px;
}
.input {
width: 100%;
height: 70px;
overflow: hidden;
margin-top: 50px;
}
.input input {
width: 100%;
height: 50px;
border: none;
padding-left: 30px;
padding-top: 0;
outline: none;
font-size: 22px;
border-radius: 20px;
}
.glass p {
font-size: 22px;
margin-top: 10px;
}
@media screen and (max-width: 50px){
.glass{
width: 250px;
height: 40 0px;
}
.glass-1 {
font-size: 24px;
text-align: center;
}
.glass h2 {
font-size: 10px;
margin-top: 16px;
}
}