-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathstyle.css
132 lines (119 loc) · 2.35 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
html,body {
margin: 0;
padding: 0;
font-family: 'Dosis', sans-serif;
}
.big-container {
display: flex;
width: 100%;
height: 100vh;
justify-content: center;
align-items: center;
margin: 0;
padding: 0;
}
.container {
background-color: #ececec;
border: 3px solid #d8d8d8;
width: 28%;
height: 70%;
min-width: 300px;
min-height: 500px;
display: flex;
justify-content: flex-start;
align-items: center;
flex-direction: column;
border-radius: 20px;
}
.center {
display: flex;
justify-content: center;
}
.title {
font-size: 26px;
}
.avatar {
width: 160px;
margin-top: 1rem;
border-radius: 90px;
}
.hover {
transition: all .2s;
}
.hover:hover {
opacity: .8;
}
.google-btn {
margin: 25px;
margin-top: 5rem;
width: 80%;
min-width: 184px;
max-width: 184px;
height: 42px;
background-color: #fcfcfc;
border-radius: 2px;
box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .2);
cursor: pointer;
cursor: hand;
align-self: center;
user-select: none;
transition: all 400ms ease 0s;
display: flex;
}
.google-btn .google-icon-wrapper {
position: absolute;
margin-top: 1px;
margin-left: 1px;
width: 40px;
height: 40px;
border-radius: 2px;
user-select: none
}
.google-btn .google-icon-svg {
position: absolute;
margin-top: 11px;
margin-left: 11px;
width: 18px;
height: 18px;
user-select: none
}
.google-btn .btn-text {
float: right;
margin: 11px 14px 40px 40px;
color: #757575;
font-size: 14px;
letter-spacing: .2px;
font-family: Roboto;
user-select: none
}
.google-btn:hover {
box-shadow: 0 3px 8px rgba(117, 117, 117, .5);
user-select: none
}
.google-btn:active {
box-shadow: 0 1px 1px #757575;
background: #F8F8F8;
color: #fff;
user-select: none
}
#text-container {
width: 80%;
min-width: 184px;
max-width: 250px;
height: 42px;
border-radius: 2px;
box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .2);
cursor: pointer;
align-self: center;
user-select: none;
transition: all 400ms ease 0s;
display: flex;
color: #757575;
background: #F8F8F8;
justify-content: center;
align-items: center;
font-family: 'Dosis', sans-serif;
font-weight: 700;
text-decoration: none;
text-align: center;
}