-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
110 lines (89 loc) · 1.52 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
@import url(http://fonts.googleapis.com/css?family=Noto+Serif);
#site-wrapper {
position: relative;
overflow: hidden;
width: 100%;
}
#site-canvas {
width: 100%;
height: 100%;
position: relative;
-webkit-transform: translateX(0);
transform: translateX(0);
-webkit-transition: .3s ease all;
transition: .3s ease all;
}
#site-menu {
width: 300px;
height: 100%;
position: absolute;
top: 0;
left: -300px;
background: #428bca;
padding: 15px;
}
#site-wrapper.show-nav #site-canvas {
-webkit-transform: translateX(300px);
transform: translateX(300px);
}
body {
background-color: #000;
font-size: 20px;
color: white;
letter-spacing: 0.2rem;
}
.noto {
font-family: 'Noto Serif', serif;
}
.start {
font-size: 1.5em;
font-weight: 100;
letter-spacing: 10px;
}
.cocktail{
margin-top: -35px;
}
.recipes {
a {
font-size: 2em;
}
.ingredients {
padding-left: 0px;
}
}
.input-group {
width: 100%;
}
ul
{
list-style-type: none;
}
.nopad { padding-left: 0px;}
.list-group-item {
background-color: #000;
font-size: 20px;
border-color: #000;
}
a.list-group-item:hover
{
background-color: #353535;
}
.input-group .form-control:last-child {
background: none;
font-size: 1.5em;
cursor: auto;
line-height: normal;
height: initial;
border-top: none;
border-left: none;
border-right: none;
}
.name {
color: #428bca;
}
.detailc {
color: #555;
}
.btn-lg {
font-size: 25px;
}