-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfacebook.css
More file actions
132 lines (117 loc) · 2.33 KB
/
facebook.css
File metadata and controls
132 lines (117 loc) · 2.33 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
*{
margin: 0px;
}
html, body{
width: 100%;
height: 100%;
}
body{
background-color: #f0f2f5;
font-family: Helvetica, Arial, sans-serif;
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
}
h1{
color: #1877f2;
font-size: 48px;
line-height: 80px;
}
.p1{
font: normal 28px/32px Helvetica, Arial, sans-serif;
color: #1c1e21;
}
.p2{
color: #606770;
font: normal 15px/24px SFProText-Regular, Helvetica, Arial, sans-serif;
margin-bottom: 15px;
}
.cards {
width: 545px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
}
.card{
background-color: #fff;
border-radius: 8px;
flex: 0 0 170px;
}
.card a{
text-decoration: none;
color: #4b4f56;
font-size: 18px;
line-height: 22px;
font-family: SFProText-Medium, Helvetica, Arial, sans-serif;
text-align: center;
}
.card:hover{
box-shadow: 0 1px 8px 5px #dddfe2;
}
.card img{
width: 170px;
height: 160px;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
}
.card span{
display: block;
padding: 12px 8px 12px;
text-decoration: none;
}
form{
background-color: #fff;
width: 400px;
height: 400px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, .1), 0 8px 16px rgba(0, 0, 0, .1);
display: flex;
flex-direction: column;
}
.mail, .pwd, .submit{
width: 330px;
height: 22px;
border-radius: 6px;
font-size: 17px;
line-height: 16px;
padding: 14px 16px;
border: 1px solid #dddfe2;
margin: 20px 20px 0px;
}
.submit{
box-sizing: content-box;
background-color: #1877f2;
color: #fff;
font-size: 20px;
padding: 14px 16px;
border: none;
font-weight: bold;
margin: 10px 20px;
}
.forget_pwd{
box-sizing: content-box;
border: none;
background-color: inherit;
color: #1877f2;
width: 330px;
font-size: 17px;
line-height: 16px;
padding: 14px 16px;
margin: 10px 20px;
border-bottom: 1px solid #dddfe2;
}
.forget_pwd:hover{
text-decoration: underline;
}
.newAccount{
box-sizing: content-box;
background-color: #42b72a;
color: #fff;
width: 150px;
padding: 14px 16px;
margin: 10px 110px;
border-radius: 6px;
border: 1px solid #dddfe2;
}