-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
146 lines (125 loc) · 2.19 KB
/
style.css
File metadata and controls
146 lines (125 loc) · 2.19 KB
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
146
body {
min-width: 300px; /* your desired width */
max-width: 600px;
position: relative;
vertical-align:middle;
}
h1{
font-family: 'Alata';
font-size: 28px;
text-align: center;
letter-spacing: 2px;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
/* width: 50%; */
}
h2 {
color: #364242;
margin-left: 5px;
margin-right: 5px;
text-align: left;
font-family: "Lucida Console", "Lucida Sans Typewriter", monospace;
font-size: 16px;
font-style: normal;
font-variant: normal;
font-weight: normal;
line-height: 25px;
}
h3 {
color: #364242;
font-family: 'Alata';font-size: 14px;
}
hr {
color: #F2F3F4;
}
input[type="text"]
{
font-size:14px;
font-family: "Lucida Console", "Lucida Sans Typewriter", monospace;
font-weight: lighter;
}
p{
color: #364242;
font-style: italic;
font-size: 20px;
font-weight: normal;
margin-left: 5px;
text-align: center;
}
//////////////////////
* {
margin: 0;
padding: 0;
}
body {
/* background-image: url(img/bg.jpeg); /* get img from folder*/ */
background-size: cover;
}
nav {
width: 100%;
height: 60px;
background-color: #fff;
}
nav p {
font-family: "Lucida Console", "Lucida Sans Typewriter", monospace;
color: #222;
font-size: 24px;
line-height: 55px;
float: left;
text-align: relative;
/*padding: 0px 20px;*/
}
nav ul {
float: left;
margin: 0;
padding: 0;
}
nav ul li {
float: left;
list-style: none;
position: left;
}
a:hover{
color: #C44971;
}
.button {
background-color: white;
color: black;
border: 1px solid #e7e7e7;
font-family: 'Alata';
font-size: 16px;
}
.button:hover {background-color: #FFB24A;}
nav ul li a {
display: block;
font-family: "Lucida Console", "Lucida Sans Typewriter", monospace;
color: #222;
font-size: 15px;
padding: 0px;
text-decoration: none;
text-align: left;
margin-left: 1px;
}
nav ul li ul {
display: none;
position: absolute;
background-color: #fff;
padding: 8px;
border-radius: 0px 0px 4px 4px;
}
nav ul li:hover ul {
display: block;
}
nav ul li ul li {
width: 180px;
border-radius: 4px;
}
nav ul li ul li a {
padding: 8px 14px;
}
nav ul li ul li a:hover {
background-color: #f3f3f3;
}