-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.css
130 lines (114 loc) · 2.04 KB
/
App.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
@import url('https://fonts.googleapis.com/css2?family=Grand+Hotel&display=swap');
a{
color: black !important;
}
.brand-logo{
font-family: 'Grand Hotel', cursive;
}
.mycard{
margin-top: 30px;
}
.auth-card{
padding: 20px;
text-align: center;
max-width: 400px;
margin: 10px auto;
}
.input-field input[type=text]:focus {
border-bottom: 1px solid rgb(8, 93, 252) !important;
box-shadow: 0 1px 0 0 rgb(8, 93, 252) !important;
}
.input-field input[type=password]:focus {
border-bottom: 1px solid rgb(8, 93, 252) !important;
box-shadow: 0 1px 0 0 rgb(8, 93, 252) !important;
}
.gallery{
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.item{
width: 30%;
}
.home-card{
max-width: 500px;
height: max-content;
margin: 26px auto;
}
.collection-item{
width: 100%;
}
#toast-container{
top:30px !important;
right: 20px!important;
left : auto !important;
}
.material-icons:hover{
cursor: pointer;
}
/**/
.bg-body{
font-family: 'open Sans ',sans-serif;
color:white;
background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0)),url(bg.jpg);
background-size: cover;
}
.title{
text-align: center;
font-size: 2rem;
font-weight: 300;
}
.logo-holder{
display: flex;
justify-content: center;
margin-top: 45px;
}
.logo{
width: 100px;
height: 100px;
border: solid white 2px;
border-radius: 50%;
display: grid;
place-items: center;
font-size: 3rem;
}
.ip{
background-color: rgba(208, 201, 221, 0.275);
border: none;
color:black;
padding: 0.5rem;
display:block;
width:100%;
margin-top: 0.rem;
border-radius:5px;
}
.ip::placeholder{
color:rgb(0, 0, 0);
}
/* menu */
.container{
width: 80%;
padding: 20px;
margin: 50px auto;
display: flex;
flex-direction: row;
justify-content: center;
}
.box{
width: 200px;
margin: 0 50px;
box-shadow: 0 0 20px 2px rgba(0, 0, 0, .1);
transition: 1s;
}
.box img{
display: block;
width:100%;
border-radius: 5px;
}
.box:hover{
transform: scale(1.3);
z-index: 2;
}
.txt{
text-align: center;
}