forked from magiclabs/example-google-oauth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
49 lines (43 loc) · 742 Bytes
/
styles.css
File metadata and controls
49 lines (43 loc) · 742 Bytes
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
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
height: 100vh;
display: grid;
font-size: 18px;
}
#app {
align-self: center;
justify-self: center;
text-align: center;
width: 500px;
padding: 27px 18px;
}
h1 {
margin: 0;
padding-bottom: 1.5rem;
font-size: 36px;
}
h2 {
margin: 0;
padding-bottom: 18px;
font-size: 18px;
}
input,
button:not(.google) {
padding: 9px;
font-size: 18px;
margin-bottom: 9px;
}
button.google {
cursor: pointer;
border: none;
background: transparent;
padding: 0;
}
pre {
text-align: left;
background: #f0f0f0;
padding: 25px;
border-radius: 10px;
overflow-x: scroll;
}