-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
118 lines (103 loc) · 1.56 KB
/
index.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
* {
max-width: 900px;
margin: auto;
}
/*body {
}*/
div {
border-radius: 5px;
}
body {
/*min-width: 500px;*/
padding:10px;
/*background-image: url("patt.png");
background-repeat: repeat-x;*/
height: 20%;
height: 25px;
}
.header {
padding: 20px 10px;
height: 25px;
width: 100%;
background-color: #ffcc66;
position: fixed;
z-index: 1;
}
.header a {
float: left;
color: black;
text-align: center;
padding: 12px;
text-decoration: none;
font-size: 18px;
line-height: 0;
padding-left: 10px;
border-radius: 4px;
}
.header a:hover {
background-color: #e0eeee;
color: black;
}
.header-right {
float: right;
}
#title {
margin-left: 3%;
}
#footer {
height: 100px;
width: 100%;
background-color: #ffcc66;
clear: both;
position: relative;
}
.left {
height: 1000px;
width: 45px;
background-color: #e0eeee;
float: left;
position: inherit;
}
.right {
height: 1000px;
width: 45px;
background-color: #e0eeee;
float: right;
position: inherit;
}
.stuff {
display: inline-block;
margin-top: 6px;
margin-left: 55px;
width: 75%;
height: 1000px;
}
.head {
font-size: 20px;
}
#name {
font-family: Sacramento;
float: right;
margin-top: 10px;
margin-right: 4%;
}
.button {
text-decoration: none;
font-size: 24px;
color: inherit;
text-transform: uppercase;
position: relative;
margin-top: 10px;
padding: 19px 22px;
transition: all 0.2s ease;
}
@media only screen and (max-width: 430px) {
.left,
.right {
display: none;
}
.stuff {
width: 100%;
margin-left: 10px;
}
}