-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
140 lines (127 loc) · 3.21 KB
/
style.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
*,
html {
margin: 0;
padding: 0;
outline: 0;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
body {
background: rgb(117,175,13);
background: linear-gradient(90deg, rgba(117,175,13,1) 0%, rgba(15,204,11,1) 50%, rgba(0,255,111,1) 100%);
height: 100vh;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
a {
text-decoration: none;
}
label {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 11pt;
}
.title-login {
color: lime;
text-align: center;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
letter-spacing: 2px;
text-decoration: underline;
}
.card {
background-color: white;
border-radius: 8px;
box-shadow: 10px 10px 49px 0px rgba(0,0,0,0.75);
-webkit-box-shadow: 10px 10px 49px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 10px 10px 49px 0px rgba(0,0,0,0.75);
height: 500px;
margin: 6rem auto 8.1rem auto;
width: 500px;
}
.card-content {
padding: 10px 30px;
}
.card-title {
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
letter-spacing: 3px;
padding-bottom: 20px;
padding-top: 20px;
text-align: center;
}
.underline-title {
background: #a6f77b;
height: 2px;
margin: 0.4rem auto 0 auto;
width: 89px;
}
.form-border {
background: #a6f77b;
height: 1px;
width: 100%;
}
.form-input{
width: calc(100% - 20px);
padding: 8px 10px;
margin-bottom: 15px;
border: none;
background-color: transparent;
border-bottom: 2px solid #41d220;
color: rgb(0, 0, 0);
font-size: 20px;
}
.form {
align-items: left;
display: flex;
flex-direction: right;
}
.login-button {
background: #55d610;
border: none;
border-radius: 20px;
box-shadow: 0px 1px 8px #55d610;
cursor: pointer;
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
height: 42px;
margin: 0 auto;
margin-top: 30px;
transition: 0.20s;
width: 153px;
justify-content: center;
align-items: center;
}
.login-button:hover {
box-shadow: 0px 1px 18px #9dd90f;
background-color: rgb(17, 104, 13);
transition: .2s ease-in-out;
transition-delay: .1s;
}
.login-button2 {
background: #55d610;
border: none;
border-radius: 20px;
box-shadow: 0px 1px 8px #55d610;
cursor: pointer;
color: white;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
height: 42px;
margin: 0 auto;
margin-top: 30px;
transition: 0.20s;
width: 153px;
align-content: right;
justify-content: right;
align-items: right;
}
.login-button2:hover {
box-shadow: 0px 1px 18px #9dd90f;
background-color: rgb(17, 104, 13);
transition: .2s ease-in-out;
transition-delay: .1s;
}
#signup {
color: #4aae14;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 10pt;
margin-top: 16px;
text-align: center;
}