-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
122 lines (103 loc) · 1.6 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
* {
font-family: Arial;
}
body {
text-align: center;
margin: auto;
}
menu {
padding: 0;
margin: 0;
text-align: center;
list-style-type: none;
text-decoration: none;
color: #4682B4;
}
menu li {
display: inline;
margin: 0;
padding: 0 40px;
text-align: center;
}
menu a {
text-decoration: none;
color: #4682B4;
}
.horisontal {
display: inline;
margin: 1vw;
}
#index_menu {
position: relative;
top: 0;
}
#index_menu li {
margin: 15vh auto;
text-align: center;
}
#index_menu a {
position: relative;
display: inline-block;
box-sizing: border-box;
padding: 15px 40px;
border: 2px solid #4682B4;
font-size: 20px;
font-style: italic;
font-weight: 400;
letter-spacing: 1.2px;
line-height: 1;
}
#index_menu a:after {
content: "";
display: block;
border: 2px solid #4682B4;
position: absolute;
top: -7px;
right: 5px;
bottom: -7px;
left: 5px;
}
li {
text-align: left;
}
label {
color: #4682B4;
}
.content {
left: 25%;
width: 50%;
}
.hidden {
display: none;
}
.hidden+label~div {
display: none;
}
.hidden:checked+label+div {
display: block;
}
table {
height: 60%;
flex-direction: column;
justify-content: space-around;
}
footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
}
@media(max-width: 500px), (max-height: 500px) {
footer {
position: inherit;
left: 0;
bottom: 0;
width: 100%;
}
}
@media(max-width: 1000px) {
menu {}
menu li {
display: block;
}
}