-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.css
92 lines (81 loc) · 1.56 KB
/
Main.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
body {
transition: background 500ms ease-in, color 1000ms ease-out;
color: var(--text);
background: var(--bg);
}
.darklight {
width: 2.5%;; /* you can use % */
height: auto;
}
.compLogo {
transition: 3s;
filter: brightness(var(--logo));
position: absolute 50%;
width: 30%;; /* you can use % */
height: auto;
}
.logodiv {
display: flex;
justify-content: center;
}
.mainbuttons{
display: flex;
justify-content: center;
}
.menubutton {
cursor: pointer;
background: transparent;
border: transparent;
font-size: 150%;
padding-left: 2.5%;
padding-right: 2.5%;
transition: color 1000ms ease-out;
color: var(--text);
}
.aboutus{
display: flex;
justify-content: left;
padding-top: 5%;
margin: auto;
width: 50%;
}
details[open] summary ~ *{
animation: open 450ms ease-in-out;
}
details[close] summary ~ *{
animation: close 450ms ease-in-out;
}
@keyframes open
{
0%
{
opacity: 0;
}
100%
{
opacity: 1;
}
}
details summary::-webkit-details-marker
{
display: none;
}
details summary
{
width: 100%;
padding: 0.5rem 0;
border-bottom: white;
cursor: pointer;
font-size: 1.25em;
}
.pagebot
{
transition: background 500ms ease-in;
background: var(--bottompage);
border: transparent;
padding: 0%;
position:absolute; left: 0; right: 0; bottom: 0; top: 115%;
margin: 0%;
width: 100%;
height: 25%;
}