-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
113 lines (104 loc) · 2.03 KB
/
styles.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
113
@font-face { font-family: Alexandria-Black; src: url('assets/fonts/Alexandria/static/Alexandria-Black.ttf'); }
@font-face { font-family: Alexandria-Bold; src: url('assets/fonts/Alexandria/static/Alexandria-Bold.ttf'); }
@font-face { font-family: Alexandria-Regular; src: url('assets/fonts/Alexandria/static/Alexandria-Regular.ttf'); }
/*
----
BODY
----
*/
body{
background-color: rgb(96 56 17);
}
/*
----------
LOGO STYLE
----------
*/
.logo-flex-col{
display: flex;
align-items: center;
justify-content: center;
}
.logo-img{
height: 10rem;
width: 10rem;
}
.logo-sub-text{
color:#FFF;
font-family: Alexandria-Black;
text-shadow: .3rem .3rem 0 #000;
}
.logo-sub-text:hover{
color:#f08c08;
text-decoration: none;
}
.logo-main-text{
color: #FFF;
font-family: Alexandria-Black;
text-shadow: .3rem .3rem 0 #000;
}
.logo-main-text:hover{
color: #FFF;
text-decoration: none;
}
/*
----
BODY
----
*/
.drink-text{
color:#FFF;
font-family: Alexandria-Regular;
text-shadow: .1rem .1rem 0 #000;
}
.drink-text-alt{
color:#f08c08;
font-family: Alexandria-Regular;
text-shadow: .1rem .1rem 0 #000;
}
.drink-cat-text{
color:#037045;
font-family: Alexandria-Bold;
text-shadow: .1rem .1rem 0 #000;
}
.drink-select-label{
color: #FFF;
font-family: Alexandria-Regular;
text-shadow: .05rem .05rem 0 #000;
}
.reset-btn{
background-color: #f08c08;
color: #FFF;
font-size: 2rem;
font-family: Alexandria-Black;
text-shadow: .2rem .2rem 0 #000;
border-radius: 1rem;
}
.reset-btn:hover,
.reset-btn:visited,
.reset-btn:focus{
background-color: #FFF !important;
color: #f08c08 !important;
}
.reset-btn:active{
background-color: #FFF !important;
color: orange !important;
}
.info-header{
color: #f08c08;
font-family: Alexandria-Black;
text-shadow: .2rem .2rem 0 #000;
}
.info-body{
color:#FFF;
font-family: Alexandria-Regular;
text-shadow: .1rem .1rem 0 #000;
}
/*
------
FOOTER
------
*/
.footer-rights{
color: #FFF;
}