-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathmain.css
More file actions
63 lines (58 loc) · 1.08 KB
/
main.css
File metadata and controls
63 lines (58 loc) · 1.08 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
/*
Global CSS file
*/
*{
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
line-height: normal;
}
::-webkit-input-placeholder {
color:#aaa;
font-weight: 300;
}
::-moz-placeholder {
color:#aaa;
font-weight: 300;
}
:-ms-input-placeholder {
color:#aaa;
font-weight: 300;
}
input:-moz-placeholder {
color:#aaa;
font-weight: 300;
}
body {
background: #FFF;
font-family: 'Lato', sans-serif;
font-size: 16px;
}
:global(.btn) {
display: flex;
justify-content: center;
align-items: center;
margin: 10px auto 0;
background: #41c3fa;
border: 1px solid #fafafa;
outline: none;
border-radius: 12px;
max-width: 240px;
width: 100%;
height: 40px;
font-size: 18px;
color: #fff;
box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.15), inset 1px 2px rgba(255, 255, 255, 0.3);
transition: all 0.15s ease;
cursor: pointer;
}
:global(.btn:hover:not(:disabled)) {
background: #548bfa;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), inset 0 0 transparent;
}
:global(.btn:disabled) {
background: #6bdcfa;
box-shadow: none;
}