-
Notifications
You must be signed in to change notification settings - Fork 13
/
app.css
127 lines (108 loc) · 1.96 KB
/
app.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
body {
font-family: 'Lato', sans-serif;
font-size: 16px;
background-color: #efefef;
}
.main {
padding: 20px;
margin: 10px auto;
max-width: 800px;
background-color: white;
-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}
.notice {
display: none;
color: red;
font-weight: bold;
}
h1 {
font-size: 24px;
margin-top: 0;
}
h2 {
font-size: 16px;
}
.response {
background-color: #cdcdcd;
padding: 15px;
overflow: auto;
word-wrap: break-word;
}
button, .button {
font-family: 'Lato', sans-serif;
padding: 10px;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
border: 1px solid #ededed;
background-color: #ededed;
cursor: pointer;
}
.providers {
display: -webkit-flex;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
button div.text, .button div.text {
white-space: nowrap;
}
.providers button {
background: transparent;
height: 32px;
padding: 3px;
display: -webkit-flex;
display: flex;
margin-right: 10px;
margin-bottom: 10px;
-webkit-align-items: center;
align-items: center;
}
.providers button div {
display: inline-block;
flex: auto;
align-self: center;
}
.providers div.logo {
height: 26px;
width: 26px;
}
.providers div.text {
padding: 0 10px;
}
.logout {
margin-top: 20px;
}
button#facebook {
background: #4c69ba;
background: linear-gradient(#4c69ba, #3b55a0);
color: white;
border: none;
}
button#facebook div.logo {
background-image: url("images/icons/f.svg");
height: 26px;
width: 26px;
}
button#google div.logo {
background: url("images/icons/g.svg");
height: 22px;
width: 22px;
margin-left: 2px;
}
button#microsoft div.logo {
background: url("images/icons/ms.png");
background-size: 22px 22px;
height: 22px;
width: 22px;
margin-left: 2px;
}
button#test {
margin-bottom: 5px;
}
a {
color: #454545;
}