-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
145 lines (128 loc) · 3.1 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,800,700,300);
@import url(https://fonts.googleapis.com/css?family=Squada+One);
body {
padding: 20px 80px;
background: #eee url(https://subtlepatterns.com/patterns/extra_clean_paper.png);
}
#logo {
font-family: 'Open Sans', sans-serif;
color: #555;
text-decoration: none;
text-transform: uppercase;
font-size: 150px;
font-weight: 800;
letter-spacing: -3px;
line-height: 1;
text-shadow: #EDEDED 3px 2px 0;
position: relative;
}
#logo:after {
content: "BulkValue";
position: absolute;
left: 8px;
top: 32px;
}
#logo:after {
/*background: url(https://subtlepatterns.com/patterns/crossed_stripes.png) repeat;*/
background-image: -webkit-linear-gradient(left top, transparent 0%, transparent 25%, #555 25%, #555 50%, transparent 50%, transparent 75%, #555 75%);
background-size: 4px 4px;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
z-index: -5;
display: block;
text-shadow: none;
}
#menu {
width: 1090px;
height: 42px;
list-style: none;
margin: 10px 0 0 0;
padding: 25px 10px;
border-top: 4px double #AAA;
border-bottom: 4px double #AAA;
position: relative;
text-align: center;
}
#menu li {
display: inline-block;
width: 173px;
margin: 0 10px;
position: relative;
-webkit-transform: skewy(-3deg);
-webkit-backface-visibility: hidden;
-webkit-transition: 200ms all;
}
#menu li a {
text-transform: uppercase;
font-family: 'Squada One', cursive;
font-weight: 800;
display: block;
background: #FFF;
padding: 2px 10px;
color: #333;
font-size: 35px;
text-align: center;
text-decoration: none;
position: relative;
z-index: 1;
text-shadow: 1px 1px 0px #FFF, 2px 2px 0px #999, 3px 3px 0px #FFF;
background-image: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, .05) 100%);
-webkit-transition: 1s all;
background-image: -webkit-linear-gradient(left top, transparent 0%, transparent 25%, rgba(0, 0, 0, .15) 25%, rgba(0, 0, 0, .15) 50%, transparent 50%, transparent 75%, rgba(0, 0, 0, .15) 75%);
background-size: 4px 4px;
box-shadow: 0 0 0 1px rgba(0, 0, 0, .4) inset, 0 0 20px -5px rgba(0, 0, 0, .4), 0 0 0px 3px #FFF inset;
}
#menu li:hover {
width: 203px;
margin: 0 -5px;
}
#menu a:hover {
color: #d90075;
}
#menu li:after,
#menu li:before {
content: '';
position: absolute;
width: 50px;
height: 100%;
background: #BBB;
-webkit-transform: skewY(8deg);
x-index: -3;
border-radius: 4px;
}
#menu li:after {
background-image: -webkit-linear-gradient(left, transparent 0%, rgba(0, 0, 0, .4) 100%);
right: 0;
top: -4px;
}
#menu li:before {
left: 0;
bottom: -4px;
background-image: -webkit-linear-gradient(right, transparent 0%, rgba(0, 0, 0, .4) 100%);
}
body:not(#header) {
/* background: #282828; */
text-align: center;
}
.icon {
color: green;
}
.text_input {
height: 300px;
width: 1000px;
font-size: 15pt;
justify-content: center;
}
.hide {
display: none;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
height: 45px;
background-color: grey;
color: white;
text-align: center;
}