-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtext.css
116 lines (110 loc) · 1.86 KB
/
text.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
*{
margin: 0;
padding: 0;
font-family: 'Poppins',sans-serif;
outline: none;
box-sizing: border-box;
font-display: "Noto Sans JP",sans-serif;
}
body{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: url('burger.jpeg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
header{
position: fixed;
font-family: sans-serif;
padding: 20px 100px;
left: 0;
top: 0;
justify-content: space-between;
align-items: center;
display: flex;
z-index: 99;
width: 100%;
}
.centre{
text-align: center;
padding: 50px;
border: 1px solid black;
}
.navigation a{
top: 0;
margin-left: 40px;
font-weight: 500px;
font-size: 1.1rem;
position: relative;
text-decoration: none;
color: black;
float: right;
padding-right: 4px;
}
.navigation.btn_login{
width: 130px;
height: 50px;
margin-left: 40px;
font-weight: 500px;
border: 2px solid black;
border-radius: 6px;
font-size: 1.1rem;
color: #fff;
outline: none;
background: transparent;
}
.logo{
font-size: 2rem;
color: black;
user-select: none;
}
.wrapper{
position: relative;
width: 400px;
height: 440px;
background: transparent;
border: 2px solid rgba(255, 255, 255, .5);
border-radius: 20px;
backdrop-filter: blur(10px);
box-shadow: 0 0 30px rgba(0, 0, 0, .5);
display: flex;
justify-content: center;
align-items: center;
}
.wrapper.form-box{
width: 100px;
height: 40px;
}
.form-box h2{
text-align: center;
}
.details{
width: 200px;
height: 80px;
position: relative;
border-bottom: 2px solid black;
margin: 30px 0;
}
.details input{
width: 100px;
height: 100px;
background: transparent;
border: none;
outline: none;
}
.details span{
position: relative;
left:100px ;
}
.btn{
width: 130px;
height: 50px;
border-radius: 6px;
background: transparent;
justify-content: center;
align-content: center;
left: 50px;
}