-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
124 lines (111 loc) · 2.52 KB
/
styles.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
118
119
120
121
122
123
124
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Lexend+Deca&family=Poppins:wght@400;500;600;700&display=swap');
*{
/* font-family: 'Inter', sans-serif; */
font-family: 'Poppins', sans-serif;
padding: 0;
margin: 0;
box-sizing: border-box;
}
main{
min-height: 100vh;
background: linear-gradient(to right top, #65dfc9,#6cdbeb);
display: flex;
justify-content: center;
align-items: center;
}
.container{
min-height: 80vh;
width: 80%;
background: linear-gradient(to right bottom,
rgba(255,255,255,0.7),
rgba(255,255,255,0.3));
border-radius: 2rem;
z-index: 2;
backdrop-filter: blur(2rem);
}
.circle1,.circle2{
background: white;
background: linear-gradient(to right bottom,
rgba(255,255,255,0.8),
rgba(255,255,255,0.3));
height: 15rem;
width: 15rem;
position: absolute;
z-index: 1;
border-radius: 50%;
}
.circle1{
bottom: 3%;
left: 5%;
}
.circle2{
top: 3%;
right: 5%;
}
h1{
padding-top: 2rem;
padding-bottom: 0.3rem;
text-align: center;
}
.bdr{
width:60%;
border: 15px solid rgba(255,255,255,0.8);
border-radius: 2rem;
max-width: 80vh;
margin: auto;
}
.button-35 {
display: block;
margin: auto;
margin-bottom: 2rem;
align-items: center;
background-color: rgba(255, 255, 255, 0.4);
border-radius: 12px;
box-shadow: transparent 0 0 0 3px,rgba(18, 18, 18, .1) 0 6px 20px;
box-sizing: border-box;
color: #121212;
cursor: pointer;
flex: 1 1 auto;
font-family: Inter,sans-serif;
font-size: 1.2rem;
font-weight: 700;
justify-content: center;
line-height: 1;
margin-top: 1.5rem;
outline: none;
padding: 1rem 1.2rem;
text-align: center;
text-decoration: none;
transition: box-shadow .2s,-webkit-box-shadow .2s;
white-space: nowrap;
border: 0;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
transition: transform 0.5s;
margin-top: 4rem;
}
.button-35:hover {
transform: scale(1.1);
}
.output{
background: linear-gradient(to right bottom,
rgba(255,255,255,0.6),
rgba(255,255,255,0.3));
border-radius: 1rem;
margin: auto;
margin-top: 3rem;
width: 83%;
height: 40vh;
text-align: center;
font-size: 2vw;
display: flex;
align-items: center;
justify-content: center;
padding: 0 3rem;
}
@media screen and (max-width: 600px) {
.output {
font-size: 3vw;
}
}