summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/custom.css.scss
blob: 420bb4a09a45a85a208c4f6e9428a5f994ae9811 (plain)
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
@import "bootstrap";

header > nav {
	@extend .navbar; 
	@extend .navbar-inverse;
	color: white;	

	#log-buttons {
		margin-top: 8px;
		form { display: inline; }
	}
	form.search {
		@extend .navbar-form;
		@extend .navbar-right;
		input[type="submit"] {
			@extend .btn-warning; margin-top: -3px; margin-right: 8px;
		}
	}
}

a, input[type="submit"] {
	@extend .btn;
	&.user { @extend .btn-info; }
	&.signup { @extend .btn-success; }
	&.signin { @extend .btn-warning; }
	&.signout { @extend .btn-danger; }
	&.server { @extend .btn-danger; }
}


input[type="text"],  input[type="password"]{
	border: 3px inset #A5A5A5;
    -webkit-box-shadow: 
      inset 0 0 8px  rgba(0,0,0,0.1),
            0 0 16px rgba(0,0,0,0.1); 
    -moz-box-shadow: 
      inset 0 0 8px  rgba(0,0,0,0.1),
            0 0 16px rgba(0,0,0,0.1); 
    box-shadow: 
      inset 0 0 8px  rgba(0,0,0,0.1),
            0 0 16px rgba(0,0,0,0.1); 
    padding: 10px;
    background: rgba(0,0,0,0.5);
    margin: 0 0 5px 0;
}

p.errors {
	background-color: #FCF8C7;
	color: red;
	border-radius: 7px;
	padding: 10px;
}

#errorExplanation {
	h2 {
		font-size: 1em;
		color: red;
		font-weight: bold;
	}
	li {
		font-size: 1em;
		color: red;
		font-style: italic;  
	}

}

#notice {
	text-align: center;
	font-weight: bold;
}