-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
105 lines (88 loc) · 1.49 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
h1, h2, footer {text-align: center;margin: 0;}
body {
margin: auto;
font-family: monospace;
height: 100%;
background-image: url(cabane.webp);
background-position: center;
background-size: cover;
}
.member {
cursor: pointer;
color: white;
border: 1px solid black;
border-radius: 10px;
padding: 11px;
margin: 15px;
height: fit-content;
}
.presentation {
display: none;
position: absolute !important;
top: 0;
left: 0;
background: white;
border: 1px solid black;
color: black;
width: fit-content;
z-index: 10;
}
.presentation img {
max-width: 100%;
}
.close {
padding: 4px;
text-align: right;
font-size: 21px;
width: fit-content;
height: fit-content;
cursor: pointer;
position: absolute;
top: 0;
right: 5px;
color: white;
}
.handle {
cursor: move;
border-bottom: 1px
black solid;
height: 24px;
background: black;
color: white;
text-align: left;
padding-top: 9px;
padding-left: 17px;
}
a, a:visited {
color: blue;
}
html {
height: 100%;
}
main {
display: flex;
overflow: hidden;
flex-wrap: wrap;
align-content: flex-start;
height: 100%;
}
.content {
overflow-x: hidden;
height: 400px;
width: 400px;
}
div:target {
display: block;
}
footer {
position: absolute;
bottom: 1%;
right: 1%;
font-size: large;
}
footer a, footer a:visited {
color: grey;
}
footer a:hover {
color: blue;
}