-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.css
219 lines (177 loc) · 3.36 KB
/
portfolio.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
/* fond d'écran */
body {
background-image: url("img/bliss.jpg");
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
display: flex;
flex-wrap: wrap;
min-width: fit-content;
z-index: -99;
}
/* fenêtre */
.window {
position: absolute;
min-width: 27.2%;
margin-top: 10%;
margin-left: 35%;
max-height: 500px; /*a voir pour mettre en %*/
}
.title-bar {
cursor: move;
}
article[role=tabpanel]{ /*gère le contenu des tabpanels*/
max-height: 400px; /*a voir pour mettre en %*/
overflow: scroll;
height: calc(100% - 44px);
}
/* moi */
.moi img {
position: absolute;
top: 5%;
right: 5%;
border: 5px solid white;
border-radius: 4px;
box-shadow: 2px 2px 5px black;
width: 20%;
}
/* barre */
/* footer img {
display: flex;
position:absolute;
bottom:0;
left:0;
width:100%;
z-index: -20;
} */
/* form */
article button {
margin-top: 2%;
margin-left: 13%;
}
#text24 {
border: #7f9db9 solid 1px;
resize: none;
}
/* texte du bas des sociaux et icons */
.textbas {
position: absolute;
right: 5%;
bottom: 5%;
}
.iconsoc1 img {
position: absolute;
width: 8%;
right: 14%;
bottom: 15%;
}
.iconsoc2 img {
position: absolute;
width: 8%;
right: 5%;
bottom: 15%;
}
.iconsoc3 img {
position: absolute;
width: 8%;
right: 23%;
bottom: 15%;
}
/* contient les photos, ul, titres */
.containert {
display: flex;
flex-direction: column;
margin-bottom: 3%;
}
.containert img {
width: 50%;
}
.containert p {
font-size: 15px;
font-weight: bolder;
}
.containert ul {
display: flex;
flex-wrap: wrap;
}
/*contient les containers*/
.containerm {
display: flex;
flex-direction: row;
justify-items: center;
}
summary {
font-weight: bold;
}
summary:hover{
cursor:pointer;
}
details {
max-width: 90%;
}
/* test */
.containersp {
margin-left: 10%;
}
/* barre start */
.btnStart{
background: url(img/start/001.png);
background-size: cover;
background-repeat: no-repeat;
bottom: 0;
left: 0;
width: 5.5%;
height: 4%;
display: flex;
position: absolute;
z-index: 100;
border: none;
outline: none;
box-shadow: none;
inset: none;
}
.btnStart:not(:disabled):hover{
/*bien respecter les sélecteurs du css sinon ça marche pas.*/
/*source: 2h30 sur la barre des tâches*/
background: url(img/start/002.png);
background-size: cover;
background-repeat: no-repeat;
box-shadow: none;
inset:none;
border: none;
outline: none;
}
footer button:not(:disabled).active, .btnStart:not(:disabled):active {
background: url(img/start/003.png);
background-size: cover;
background-repeat: no-repeat;
border: none;
outline: none;
box-shadow: none;
inset: none;
}
footer button.focused, .btnStart:focus{
box-shadow: none;
inset: none;
outline: none;
border: none;
}
footer p{
z-index: 100;
color: white;
position: absolute;
bottom: -0.2%;
right: 0.6%;
font-size: small;
}
/* ----------------- */
.barStart{
background: url(img/start/100.png);
bottom: 0;
left: 5%;
height: 4%;
width: 95%;
position: absolute;
display: flex;
z-index: -99; /*comme ça c derrière le bouton*/
}