-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
108 lines (91 loc) · 1.45 KB
/
style.css
File metadata and controls
108 lines (91 loc) · 1.45 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
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
a {
color: #C20108;
}
button {
color: #444;
background-color: #fff;
border: 1px solid #444;
box-sizing: border-box;
border-radius: 0px;
padding: 5px 15px;
text-align: center;
display: inline-block;
cursor: pointer;
line-height: normal;
font-size: 16px;
}
button.large {
font-size: 24px;
display: block;
margin: 24px;
}
button:hover {
background-color: #C20108;
color: #fff;
}
button.active {
background-color: #C20108;
color: #fff;
cursor: default;
}
.moy-logo-block {
display: inline-block;
font-size: 24px;
margin-right: 15px;
}
.moy-logo-block a {
display: flex;
flex-flow: row nowrap;
align-items: flex-start;
text-decoration: none;
}
.moy-logo-block img {
width: 36px;
height: 36px;
}
.moy-logo-block strong {
margin-left: 7.2px;
}
.flex.row {
display: flex;
flex-flow: row nowrap;
align-items: center;
justify-content: space-between;
}
.flex.col {
display: flex;
flex-flow: column nowrap;
}
.hint {
font-size: 12.8px;
color: #777;
}
input[type='text'] {
font-size: 16px;
padding: 4.8px;
color: #444;
background-color: #fff;
border: 1px solid #444;
box-sizing: border-box;
border-radius: 0px;
font-family: "Helvetica Neue", Arial, sans-serif;
}
.clearfix::after {
content: "";
clear: both;
display: table;
}
.to-right {
float: right;
}
.fail {
color: #FF4136;
}
.success {
color: #2ECC40;
}
h1, h2, h3 {
line-height: 1.2;
clear: both;
color: #C20108;
}