forked from Abimeena27/3Davatar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Home.css
154 lines (139 loc) · 3.31 KB
/
Home.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
*{
margin:0;
}
.Header{
width: 100%;
height:100% ;
min-height:10vh;
background-color:rgba(218, 236, 236, 0.043);
}
.Logo{
margin: auto;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight: 500;
padding:10px;
}
.BaseContainer{
width: 100%;
height: 100%;
min-height:100vh;
/* background:linear-gradient(#2996df9f,#0a796eac); */
background:linear-gradient( #6e8793c4,#0d405de8 );
display: flex;
justify-content: center;
flex-direction: column;
}
.Container{
width: 100%;
height: 100%;
min-height:90vh;
/* background:linear-gradient(#2996df9f,#0a796eac); */
/* background:linear-gradient( #99c9d4b5,#0d405de8 ); */
display: flex;
justify-content:center;
align-items: center;
flex-direction:row;
}
.HomeContainer{
width:30%;
height:100%;
min-height:35vh;
border: 3px solid rgba(31, 87, 121, 0.607);
box-shadow: 1px 1px 1px 1px rgba(31, 87, 121, 0.377);
display: flex;
justify-content:space-around;
align-items: center;
flex-direction:column;
border-radius:8px;
background-color:rgba(31, 87, 121, 0.532);
color: aliceblue;
transition:0.5s;
}
.HomeContainer:hover{
transform: scale(1.03);
box-shadow: 2px 2px 2px 2px rgba(31, 87, 121, 0.263);
}
.HomeText{
font-size: large;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-weight: 400;
}
.input{
width:60%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.file-input-wrapper {
position: relative;
overflow: hidden;
display: inline-block;
}
.file-input-wrapper input[type=file] {
font-size: 100px;
position: absolute;
left: 0;
top: 0;
opacity: 0;
cursor: pointer;
}
.custom-file-input {
display: inline-block;
padding: 8px;
cursor: pointer;
background-color: rgba(22, 107, 146, 0.518);
border:2px solid rgba(240, 248, 255, 0.507);
border-radius:8px;
color:aliceblue;
}
.custom-file-input:active{
background-color: rgba(105, 230, 201, 0.562);
border:2px solid aliceblue;
}
.btn{
width:25%;
font-size: large;
padding: 8px;
background-color: rgba(10, 136, 194, 0.623);
border:2px solid aliceblue;
border-radius:8px;
color:aliceblue;
cursor: pointer;
transition:0.5s;
}
.btn:hover{
background-color: rgba(105, 230, 201, 0.562);
border:2px solid rgba(8, 130, 102, 0.932);;
}
.ShowBtn{
width:35%;
font-size: medium;
}
.LeftContainer{
width:60%;
/* background-color: aquamarine; */
}
.LeftImg{
width:70%;
}
@media screen and (max-width: 600px) {
.Container{
width:100%;
display: flex;
justify-content:center;
align-items: center;
flex-direction: column;
}
.LeftContainer{
width:100%;
}
.LeftImg{
width: 100%;
}
.HomeContainer{
width: 85%;
height:70%;
min-height:20vh;
}
}