-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
172 lines (163 loc) · 3.67 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
@import url('https://fonts.googleapis.com/css2?family=Kanit&family=Poppins:wght@600&family=Ubuntu:wght@300&display=swap');
:root{
--kanit: 'Kanit', sans-serif;
--popins: 'Poppins', sans-serif;
--Ubantu: 'Ubuntu', sans-serif;
}
*{
margin: 0;
padding: 0;
}
body{
background:url('./TEmp/question_marks_background.jpg');
background-size: cover;
height: 100vh;
overflow-x: hidden;
display: grid;
grid-template-columns: 1fr .7fr;
grid-template-rows: 1fr;
/* grid-template-columns: 1fr 1fr; */
/* grid-template-rows: 1fr; */
grid-gap: 4px;
background-color: #ffff;
/* filter:blur(.5px); */
}
.designing{
display: inline-block;
/* margin-left: 20px; */
margin: 15px 0px 15px 15px;
/* background-color: #aaf39a; */
background: url('./TEmp/17973871.jpg');
background-position:right;
opacity: 60%;
border-top-right-radius:38px;
border-bottom-left-radius:38px;
position: relative;
}
.text{
margin: 40px 0 10px 20px;
font-size: 40px;
font-family: var(--popins);
letter-spacing: 7px;
text-align: center;
width: 250px;
border-right:1px solid ;
white-space: nowrap;
overflow: hidden;
animation-name: typing, cursor;
animation-duration: 6s, 0.6s;
animation-timing-function: steps(8), step-end;
animation-iteration-count: infinite, infinite;
animation-direction: normal, alternate;
}
.text2{
margin: 20px 0 10px 20px;
font-size: 40px;
font-family: var(--popins);
letter-spacing: 7px;
text-align: center;
width: 310px;
border-right:1px solid ;
white-space: nowrap;
overflow: hidden;
animation-name: typing, cursor;
animation-duration: 6s, 0.6s;
animation-timing-function: steps(17), step-end;
animation-iteration-count: infinite, infinite;
animation-direction: normal, alternate;
}
@keyframes cursor{
20%{border-color: transparent;}
}
@keyframes typing{
from {width: 0;}
}
.animat{
height: 150px;
width: 200px;
margin-left: 30px;
font-size: 24px;
color: #3498db;
transform: rotate(0deg);
transition: transform 1s ease-in-out, color 1s ease-in-out;
cursor: pointer;
animation: rotateAndBlink 4s linear infinite;
}
@keyframes rotateAndBlink {
0%, 100% {
transform: rotate(0deg);
opacity: 100;
}
50% {
transform: rotate(60deg);
opacity:0 ;
}
}
/* login page */
.diver{
display: flex;
justify-content: space-between;
flex-direction: column;
}
.header{
align-self: center;
border-top-left-radius:10%;
border-bottom-right-radius:10%;
/* background-color: #8db775; */
flex: .3;
height: 800px;
width:400px;
margin-top:150px;
/* border: .5px solid rgb(0, 0, 0); */
}
.header h1{
align-items: center;
background: url('./TEmp/dialogueBOX.png');
background-size: cover;
background-position: center;
flex: 1;
font-size: 50px;
/* margin: 15px; */
font-family: var(--kanit);
text-align: center;
color: black;
}
.signup{
padding: 30px;
background-color: #2a4252;
align-items: center;
flex: 1;
border: .5px solid rgb(0, 0, 0);
height: 100px;
width:510px;
margin-bottom: 280px;
margin-top: 10px;
text-align: center;
}
.signup input{
padding:9px;
margin: 5px;
width: 450px;
height: 30px;
border: none;
border-radius: 6px;
}
.signup button{
cursor: pointer;
padding: 5px;
font-size: 410x;
width: 120px;
margin-top:10px ;
height:45px;
border-radius: 7px;
}
.factsdis{
margin: 80px 20px 0px 220px;
height: 50px;
width: 400px;
}
.factsdis h2 {
font-weight: 300;
font-size: 40px;
font-family: var(--Ubantu);
}