-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
95 lines (77 loc) · 1.52 KB
/
styles.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
body, html {
height: 100%;
margin: 0
}
.drop-zone {
padding-top: 4rem;
padding-left: 4.5rem;
padding-right: 1rem;
display: inline-flex;
align-items: stretch;
}
.background-image {
background-image: url("mountain2.webp");
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
/* START LOGIN */
#login-page-css {
height: 100vh;
min-height: 500px;
}
#login-card {
min-width: 20rem !important;
}
#btn-login-submit {
color: #212121;
padding: 5px 10px;
border-color: #DDDDDD;
border-radius: 4px;
box-shadow: 1px 4px 9px -1px rgba(117,117,117,0.39);
}
#btn-login-submit:hover {
box-shadow: 1px 1px 9px 2px rgba(117,117,117,0.39);
}
/* END LOGIN */
/* START SIGNUP */
#signup-page-css {
height: 100vh;
min-height: 500px;
min-width: 300px;
}
#btn-signup-submit {
color: #212121;
padding: 5px 10px;
border-color: #DDDDDD;
border-radius: 4px;
box-shadow: 1px 4px 9px -1px rgba(117,117,117,0.39);
}
#btn-signup-submit:hover {
box-shadow: 1px 1px 9px 2px rgba(117,117,117,0.39);
}
/* END SIGNUP */
.big-card {
color:whitesmoke;
padding-top: 0.7rem;
padding-left: 0.5rem;
padding-right: 0.5rem;
padding-bottom: 0.1rem;
background-color: #A0A0A0;
}
.big-card-label {
font-size:15px;
display: flex;
}
.card {
max-width: 15rem;
min-width: 15rem;
}
.card-body {
padding: 1rem 1.25rem;
padding-bottom: 1rem
}
.card-text {
font-size:10px;
}