-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
117 lines (97 loc) · 1.53 KB
/
index.css
File metadata and controls
117 lines (97 loc) · 1.53 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
/*
#67DB62
#72B2F2
#915CDB
#FF6B9F
*/
body,
html {
margin: 0;
font-family: Verdana;
}
#panel_up nav a {
text-decoration: none;
color: #67DB62;
padding: 1%;
}
#panel_up nav a:hover {
background-color: black;
}
header {
background-color: #444;
}
#panel_up {
background-color: #333;
color: #67DB62;
padding: 1%;
}
#panel_down {
height: auto;
text-align: center;
color: white;
background-image: url(./logo.png);
background-size: contain;
background-repeat: no-repeat;
background-position-x: 20%;
display: flex;
flex-direction: column;
}
#panel_down nav {
display: flex;
justify-content: center;
padding: 1%;
background-position: center;
}
.button:hover {
background-color: green;
}
.button {
background-color: #67DB62;
border-radius: 5px;
color: white;
text-decoration: none;
padding: 1%;
display: block;
margin-left: 1%;
margin-right: 1%;
}
#teaser {
display: flex;
}
hr {
width: 80%;
height: 1px;
border: none;
background-color: #666;
margin-top: 5%;
margin-bottom: 5%;
}
#content {}
#teaser section {
display: flex;
flex-direction: column;
align-items: center;
width: 30%;
}
section {
padding-left: 2%;
padding-right: 2%;
text-align: justify;
}
#teaser section img {
width: 60%;
filter: invert(24%) sepia(0%) saturate(1329%) hue-rotate(142deg) brightness(92%) contrast(83%);
}
section img {
float: left;
}
footer {
background-color: #333;
color: white;
font-size: small;
padding: 1%;
}
a {
text-decoration: none;
color: #67DB62;
}