-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
112 lines (102 loc) · 1.93 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
/* Page Sections */
body {
background-color: #F1F1F1;
background-image: url('http://i.imgur.com/57EjZOf.png');
}
.container {
width: 90%;
}
#content {
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
background-color: #FCFCFC;
margin-top: -20px;
padding: 15px;
display: none;
}
#error {
display: none;
font-size: 20px;
}
/* Select Bootstrap Styles */
a {
color: #428BCA;
text-decoration: none;
}
a:hover, a:focus {
color: #2A6496;
text-decoration: underline;
}
/* Alerts */
.alert {
padding: 15px;
border: 1px solid rgba(0, 0, 0, 0);
border-radius: 4px;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.alert-danger {
color: #A94442;
background-color: #F2DEDE;
border-color: #EBCCD1;
}
/* Button */
.btn {
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
font-size: 14px;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
text-decoration: none;
vertical-align: middle;
cursor: pointer;
background-image: none;
border: 1px solid rgba(0, 0, 0, 0);
border-radius: 4px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.btn-primary {
color: #FFF;
background-color: #428BCA;
border-color: #357EBD;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
color: #FFF;
background-color: #3071A9;
border-color: #285E8E;
text-decoration: none;
}
.btn-hero {
padding: 15px;
font-size: 30px;
width: 100%;
}
/* Utilities */
.center-block {
display: block;
margin-left: auto;
margin-right: auto;
}
.text-center {
text-align: center;
}
.flat-top {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.flat-bottom {
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}