-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathm.css
145 lines (128 loc) · 2.72 KB
/
m.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
141
142
143
144
145
/*style.css*/
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: rgba(152, 204, 152, 0.50);
}
.header {
background-color: rgba(224, 224, 224, 0.5);
position: fixed;
border-radius: 20px;
box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.1), -8px -8px 15px rgba(255, 255, 255, 0.7);
text-align: left;
width: 100%;
height: 60px;
display: flex;
left: 0;
justify-content: space-between;
align-items: center;
top: 0;
z-index: 1;
transition: background-color 0.3s ease, opacity 0.3s ease;
margin-bottom: 20px;
}
h1 {
color: green;
}
.login-container {
background-color: rgba(152, 204, 152, 0.10);
border: 2px dotted rgba(100, 150, 50, 0.40);
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
padding: 20px;
text-align: center;
color: green;
max-width: 400px;
width: 100%;
}
.login-container img{
width: 40px;
height: 40px;
border-radius: 40%;
border: 4px solid #fff;
box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1), -4px -4px 10px rgba(255, 255, 255, 0.7);
margin-left: 10px;
cursor: pointer;
}
.login-container h2 {
margin-bottom: 20px;
}
.login-form {
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 50px;
}
.login-form input {
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 12px;
}
.login-form button {
background-color: #4285f4;
color: #fff;
border: none;
padding: 10px;
border-radius: 15px;
cursor: pointer;
font-size: 16px;
}
.social-buttons {
display: flex;
flex-direction: column;
gap: 12px;
margin-top: 20px;
}
.social-buttons button {
color: #fff;
border: none;
padding: 10px;
border-radius: 6px;
cursor: pointer;
font-size: 16px;
display: flex;
align-items: center;
justify-content: center;
}
.social-buttons button.facebook {
background-color: #4c70bd;
}
.social-buttons button.twitter {
background-color: #2ca7f3;
}
.social-buttons button.google {
background-color: #f15847;
}
.social-buttons button.instagram {
background-color: #e650a5;
}
.social-icons {
display: flex;
justify-content: center;
gap: 8px;
margin-top: 9px;
}
.social-icons i {
font-size: 24px;
color: #4285f4;
}
i {
margin-right: 10px;
}
.social-icons i.facebook {
color: #3b5998;
}
.social-icons i.twitter {
color: #1da1f2;
}
.social-icons i.google {
color: #db4a39;
}
.social-icons i.instagram {
color: #C13584;
}