-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
115 lines (106 loc) · 1.79 KB
/
Copy pathstyle.css
File metadata and controls
115 lines (106 loc) · 1.79 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
103
104
105
106
107
108
109
110
111
112
113
114
115
*{
box-sizing: border-box;
padding: 0;
margin:0px;
}
.box{
display:flex;
align-items: center;
justify-content: center;
width:100vw;
height: 100vh;
background-color:rgba(159, 154, 154, 0.363);
}
.card{
height:650px;
width:550px;
background-image: linear-gradient(120deg, #89f7fe 0%, #66a6ff 100%);
border-radius: 20px;
padding: 20px;
display:flex;
flex-direction: column;
}
.header{
display:flex;
gap:15px;
align-items: center;
justify-content: center;
}
.header input{
border:none;
padding:20px;
width:400px;
font-size: 22px;
border-radius: 30px;
}
.header .image {
background-color: white;
border-radius: 50%;
height:65px;
width:65px;
padding:5px;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
}
button{
cursor: pointer;
text-decoration: none;
border: none;
background-color: white;
height: 100%;
width:100%;
overflow: hidden;
}
button img{
height: 25px;
width:25px;
margin-top: 5px;
}
.body{
display:flex;
flex-direction: column;
gap:70px;
}
.bottom{
display:flex;
gap:8px;
justify-content: space-around;
}
.top{
display:flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.visual-top img{
height:280px;
width:280px;
}
.text-top {
color:white;
font-size: 45px;
display: flex;
font-weight: 700;
flex-direction: column;
align-items: center;
}
.bottom .img{
display: flex;
align-items: center;
}
.img .visual i{
height:40px;
width:40px;
display: flex;
align-items: center;
}
.img img{
width: 30px;
height: 30px;
}
.img ,text{
color:white;
font-size: 20px;
}