-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
137 lines (117 loc) · 2.61 KB
/
style.css
File metadata and controls
137 lines (117 loc) · 2.61 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#IndexPage{
width:412px;
margin: 12vh auto;
background-color:rgb(206, 158, 158);
color:rgb(247, 244, 244);
box-shadow: 0 1px 3px rgb(192, 137, 137), 0 1px 2px rgb(80, 175, 179);
transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}
#IndexPage form {
width: 100%;
max-width: 405px;
padding: 16px;
margin: auto;
}
#IndexPage.form-control {
position: relative;
box-sizing: border-box;
height: auto;
padding: 10px;
font-size: 16px;
}
#IndexPage.form-control:focus { z-index: 2; }
#IndexPage .form-signin input[type="email"] {
margin-bottom: -1px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
#IndexPage.form-signin input[type="password"] {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
#IndexPage .social-login{
width:390px;
margin:0 auto;
margin-bottom: 14px;
}
#IndexPage .social-btn{
font-weight: 100;
color:rgb(204, 155, 155);
width:190px;
font-size: 0.9rem;
}
#IndexPage a{
display: block;
padding-top:10px;
color:rgb(96, 236, 229);
}
#IndexPage .lines{
width:200px;
border:1px solid rgb(221, 108, 108);
}
#IndexPage button[type="submit"]{
margin-top:10px;
color: #306108;
font-size: 26px;
border-radius: 18px;
border: solid 1px #268a16;
text-shadow: 1px 1px 0px #aade7c;
box-shadow: inset 1px 1px 2px 0px #c9efab;
text-decoration: none;
cursor: pointer;
position: relative;
overflow: hidden;
font-family: Arial;
background: linear-gradient(180deg, #77d42a 10%, #5cb811 100%);
display: inline-flex;
align-items: center;
padding: 0;
}
#IndexPage .facebook-btn{
background-color:#3d6de6;
}
#IndexPage .google-btn{
background-color: #81291f;
}
#IndexPage .form-reset, #logreg-forms .form-signup{
display: none;
}
#IndexPage .form-signup .social-btn{
width:210px;
}
#IndexPage .form-signup input {
margin-bottom: 2px;
}
.form-signup .social-login{
width:210px ;
margin: 0 auto;
}
@media screen and (max-width:500px){
#IndexPage {
width:300px;
}
#IndexPage .social-login{
width:200px;
margin:0 auto;
margin-bottom: 10px;
}
#IndexPage .social-btn{
font-size: 1.3rem;
font-weight: 100;
color:rgb(241, 218, 218);
width:200px;
height: 56px;
}
#IndexPage .social-btn:nth-child(1){
margin-bottom: 5px;
}
#IndexPage .social-btn span{
display: none;
}
#IndexPage .facebook-btn:after{
content:'Facebook';
}
#IndexPage .google-btn:after{
content:'Google+';
}
}