exercice explication css par endmove
This commit is contained in:
parent
589e7e555f
commit
36e63e584e
23
CSS exercices/css/css-cameleon.html
Normal file
23
CSS exercices/css/css-cameleon.html
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>Mon site caméléon</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="css/style.css">
|
||||||
|
<style>
|
||||||
|
p { color: pink; }
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<h1>Bienvenue dans mon laboratoire</h1>
|
||||||
|
</header>
|
||||||
|
<section>
|
||||||
|
<h2>Découverte des couleurs</h2>
|
||||||
|
<p>Venez découvrir la page web qui se transforme par CSS !</p>
|
||||||
|
</section>
|
||||||
|
<footer>
|
||||||
|
<p style="color: cyan;">Copyright HELMo 2018</p>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
14
CSS exercices/css/style.css
Normal file
14
CSS exercices/css/style.css
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
|
||||||
|
body {
|
||||||
|
background-color: black;
|
||||||
|
color: yellow;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
color: green;
|
||||||
|
font-size: 2rem;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
footer {
|
||||||
|
color: red;
|
||||||
|
font-size: 0.5rem;
|
||||||
|
}
|
BIN
CSS exercices/css2/.parcel-cache/407f5c3ef58f6d3e
Normal file
BIN
CSS exercices/css2/.parcel-cache/407f5c3ef58f6d3e
Normal file
Binary file not shown.
BIN
CSS exercices/css2/.parcel-cache/79f4f664f47d6411
Normal file
BIN
CSS exercices/css2/.parcel-cache/79f4f664f47d6411
Normal file
Binary file not shown.
BIN
CSS exercices/css2/.parcel-cache/data.mdb
Normal file
BIN
CSS exercices/css2/.parcel-cache/data.mdb
Normal file
Binary file not shown.
14
CSS exercices/css2/.parcel-cache/fb3d648824cd6c88.txt
Normal file
14
CSS exercices/css2/.parcel-cache/fb3d648824cd6c88.txt
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
13
|
||||||
|
61C:\laragon\www\coding.exercices\CSS exercices\css2\style2.css133238200449040358 0
|
||||||
|
70C:\laragon\www\coding.exercices\CSS exercices\css2\css-selecteurs.html133238191871005808 0
|
||||||
|
83C:\laragon\www\coding.exercices\CSS exercices\css2\dist\css-selecteurs.3a01df49.css133238191756987237 0
|
||||||
|
55C:\laragon\www\coding.exercices\CSS exercices\css2\dist133238200449925058 1
|
||||||
|
82C:\laragon\www\coding.exercices\CSS exercices\css2\dist\css-selecteurs.57d5f60e.js133238192215219343 0
|
||||||
|
60C:\laragon\www\coding.exercices\CSS exercices\css2\style.css133238191755672746 0
|
||||||
|
95C:\laragon\www\coding.exercices\CSS exercices\css2\dist\css-selecteurs.2d074b33.css.map.18512.q133238191974102519 0
|
||||||
|
83C:\laragon\www\coding.exercices\CSS exercices\css2\dist\css-selecteurs.2d074b33.css133238200449749081 0
|
||||||
|
87C:\laragon\www\coding.exercices\CSS exercices\css2\dist\css-selecteurs.2d074b33.css.map133238200449864897 0
|
||||||
|
87C:\laragon\www\coding.exercices\CSS exercices\css2\dist\css-selecteurs.3a01df49.css.map133238191757087210 0
|
||||||
|
86C:\laragon\www\coding.exercices\CSS exercices\css2\dist\css-selecteurs.57d5f60e.js.map133238192215648593 0
|
||||||
|
95C:\laragon\www\coding.exercices\CSS exercices\css2\dist\css-selecteurs.57d5f60e.js.map.16344.13133238168218346461 0
|
||||||
|
75C:\laragon\www\coding.exercices\CSS exercices\css2\dist\css-selecteurs.html133238192215167582 0
|
BIN
CSS exercices/css2/.parcel-cache/fb4b49d63a88197d
Normal file
BIN
CSS exercices/css2/.parcel-cache/fb4b49d63a88197d
Normal file
Binary file not shown.
BIN
CSS exercices/css2/.parcel-cache/lock.mdb
Normal file
BIN
CSS exercices/css2/.parcel-cache/lock.mdb
Normal file
Binary file not shown.
44
CSS exercices/css2/css-selecteurs.html
Normal file
44
CSS exercices/css2/css-selecteurs.html
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8"/>
|
||||||
|
<title>Sélecteurs CSS</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="style2.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<!-- cmd: parcel css-selecteurs.html -->
|
||||||
|
<nav>
|
||||||
|
<ul class="menu">
|
||||||
|
<li class="menu">Je suis un item avec une class sous menu</li>
|
||||||
|
<li id="home">Accueil</li>
|
||||||
|
<li>Nos services
|
||||||
|
<ul class="sousMenu">
|
||||||
|
<li>Devis</li>
|
||||||
|
<li>Placement</li>
|
||||||
|
<li>Après-vente</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>Contact</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<p class="menu">Bienvenue je suis titouan<br>MDR !</p>
|
||||||
|
<hr>
|
||||||
|
<p>Je vais bientôt décéder ... oupss</p>
|
||||||
|
|
||||||
|
<p class="users">
|
||||||
|
<span id="endmove" class="male">EndMove</span>
|
||||||
|
<br/>
|
||||||
|
<span id="gashila" class="female">Gashila</span>
|
||||||
|
<br/>
|
||||||
|
<span id="kezo" class="male">Kezo</span>
|
||||||
|
<br/>
|
||||||
|
<span id="kiki" class="female">Kiki</span>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<!-- Test du purgatoire -->
|
||||||
|
<p>
|
||||||
|
<span class="female">Si je deviens rose tu à faux ! ;-)</span>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
38
CSS exercices/css2/dist/css-selecteurs.2d074b33.css
vendored
Normal file
38
CSS exercices/css2/dist/css-selecteurs.2d074b33.css
vendored
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
p {
|
||||||
|
color: orange;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.menu {
|
||||||
|
color: violet;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu {
|
||||||
|
color: #00f;
|
||||||
|
background-color: #e0ffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
body nav ul.menu ul.sousMenu, li.menu {
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
.users {
|
||||||
|
background-color: gray;
|
||||||
|
}
|
||||||
|
|
||||||
|
.users:hover span.female {
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
.users span.female:hover {
|
||||||
|
color: pink;
|
||||||
|
}
|
||||||
|
|
||||||
|
.users :first-child {
|
||||||
|
color: #000;
|
||||||
|
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
||||||
|
font-size: 25px;
|
||||||
|
font-weight: bold;
|
||||||
|
background-color: #adff2f !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*# sourceMappingURL=css-selecteurs.2d074b33.css.map */
|
1
CSS exercices/css2/dist/css-selecteurs.2d074b33.css.map
vendored
Normal file
1
CSS exercices/css2/dist/css-selecteurs.2d074b33.css.map
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"mappings":"AAAA;;;;AAKA;;;;AAMA;;;;;AAKA;;;;AAIA;;;;AAIA;;;;AAIA;;;;AAIA","sources":["style2.css"],"sourcesContent":["p {\r\n color: orange;\r\n}\r\n\r\n/* Si je veux sélectionner le paragraphe avec une classe titouan */\r\np.menu {\r\n color: violet;\r\n}\r\n\r\n/* Si j'avais voulu s'électionner tous les menus */\r\n\r\n.menu {\r\n color: blue; /* color: blue !important; */\r\n background-color: lightcyan;\r\n}\r\n\r\nbody nav ul.menu ul.sousMenu, li.menu {\r\n color: red;\r\n}\r\n\r\n.users {\r\n background-color: grey;\r\n}\r\n\r\n.users:hover span.female {\r\n color: red;\r\n}\r\n\r\n.users span.female:hover {\r\n color: pink;\r\n}\r\n\r\n.users :first-child {\r\n background-color: greenyellow !important;\r\n color: black;\r\n font-size: 25px;\r\n font-family: Verdana, Geneva, Tahoma, sans-serif;\r\n font-weight: bold;\r\n}\r\n"],"names":[],"version":3,"file":"css-selecteurs.2d074b33.css.map","sourceRoot":"/__parcel_source_root/"}
|
1
CSS exercices/css2/dist/css-selecteurs.2d074b33.css.map.18512.q
vendored
Normal file
1
CSS exercices/css2/dist/css-selecteurs.2d074b33.css.map.18512.q
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"mappings":"","sources":["style2.css"],"sourcesContent":[null],"names":[],"version":3,"file":"css-selecteurs.2d074b33.css.map","sourceRoot":"/__parcel_source_root/"}
|
21
CSS exercices/css2/dist/css-selecteurs.3a01df49.css
vendored
Normal file
21
CSS exercices/css2/dist/css-selecteurs.3a01df49.css
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
.une-class {
|
||||||
|
background-color: #6495ed;
|
||||||
|
}
|
||||||
|
|
||||||
|
p span.male {
|
||||||
|
color: purple;
|
||||||
|
}
|
||||||
|
|
||||||
|
p.users span.female {
|
||||||
|
color: pink;
|
||||||
|
}
|
||||||
|
|
||||||
|
p #endmove.male {
|
||||||
|
font-size: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
p :hover {
|
||||||
|
color: green;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*# sourceMappingURL=css-selecteurs.3a01df49.css.map */
|
1
CSS exercices/css2/dist/css-selecteurs.3a01df49.css.map
vendored
Normal file
1
CSS exercices/css2/dist/css-selecteurs.3a01df49.css.map
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
{"mappings":"AAAA;;;;AAMA;;;;AAKA;;;;AAIA;;;;AAMA","sources":["style.css"],"sourcesContent":[".une-class {\r\n /* Quand ca commence par un \".\" dans le style\r\n cela fait référence à une class dans l'html */\r\n background-color: cornflowerblue;\r\n}\r\n\r\np span.male {\r\n color: purple;\r\n}\r\n\r\n/* Color en pink les span female contenu dans un paragraphe enfant de classe users */\r\np.users span.female {\r\n color: pink;\r\n}\r\n\r\np #endmove.male {\r\n /* Quand ca commence par un \"#\" dans le style\r\n cela fait référence à un ID dans l'html */\r\n font-size: 25px;\r\n}\r\n\r\np :hover {\r\n /* Un espace entre deux propriété CSS (class,\r\n id, ou balise) signifie enfant suivant */\r\n color: green;\r\n}\r\n\r\n\r\n\r\n\r\n/* body { color: green; }\r\n.menu { color: black; }\r\nul.menu { color: red; }\r\n#home { color: grey; }\r\nul ul { color: green; }\r\nul ul.menu { color: yellow; } */"],"names":[],"version":3,"file":"css-selecteurs.3a01df49.css.map","sourceRoot":"/__parcel_source_root/"}
|
563
CSS exercices/css2/dist/css-selecteurs.57d5f60e.js
vendored
Normal file
563
CSS exercices/css2/dist/css-selecteurs.57d5f60e.js
vendored
Normal file
@ -0,0 +1,563 @@
|
|||||||
|
// modules are defined as an array
|
||||||
|
// [ module function, map of requires ]
|
||||||
|
//
|
||||||
|
// map of requires is short require name -> numeric require
|
||||||
|
//
|
||||||
|
// anything defined in a previous bundle is accessed via the
|
||||||
|
// orig method which is the require for previous bundles
|
||||||
|
|
||||||
|
(function (modules, entry, mainEntry, parcelRequireName, globalName) {
|
||||||
|
/* eslint-disable no-undef */
|
||||||
|
var globalObject =
|
||||||
|
typeof globalThis !== 'undefined'
|
||||||
|
? globalThis
|
||||||
|
: typeof self !== 'undefined'
|
||||||
|
? self
|
||||||
|
: typeof window !== 'undefined'
|
||||||
|
? window
|
||||||
|
: typeof global !== 'undefined'
|
||||||
|
? global
|
||||||
|
: {};
|
||||||
|
/* eslint-enable no-undef */
|
||||||
|
|
||||||
|
// Save the require from previous bundle to this closure if any
|
||||||
|
var previousRequire =
|
||||||
|
typeof globalObject[parcelRequireName] === 'function' &&
|
||||||
|
globalObject[parcelRequireName];
|
||||||
|
|
||||||
|
var cache = previousRequire.cache || {};
|
||||||
|
// Do not use `require` to prevent Webpack from trying to bundle this call
|
||||||
|
var nodeRequire =
|
||||||
|
typeof module !== 'undefined' &&
|
||||||
|
typeof module.require === 'function' &&
|
||||||
|
module.require.bind(module);
|
||||||
|
|
||||||
|
function newRequire(name, jumped) {
|
||||||
|
if (!cache[name]) {
|
||||||
|
if (!modules[name]) {
|
||||||
|
// if we cannot find the module within our internal map or
|
||||||
|
// cache jump to the current global require ie. the last bundle
|
||||||
|
// that was added to the page.
|
||||||
|
var currentRequire =
|
||||||
|
typeof globalObject[parcelRequireName] === 'function' &&
|
||||||
|
globalObject[parcelRequireName];
|
||||||
|
if (!jumped && currentRequire) {
|
||||||
|
return currentRequire(name, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
// If there are other bundles on this page the require from the
|
||||||
|
// previous one is saved to 'previousRequire'. Repeat this as
|
||||||
|
// many times as there are bundles until the module is found or
|
||||||
|
// we exhaust the require chain.
|
||||||
|
if (previousRequire) {
|
||||||
|
return previousRequire(name, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Try the node require function if it exists.
|
||||||
|
if (nodeRequire && typeof name === 'string') {
|
||||||
|
return nodeRequire(name);
|
||||||
|
}
|
||||||
|
|
||||||
|
var err = new Error("Cannot find module '" + name + "'");
|
||||||
|
err.code = 'MODULE_NOT_FOUND';
|
||||||
|
throw err;
|
||||||
|
}
|
||||||
|
|
||||||
|
localRequire.resolve = resolve;
|
||||||
|
localRequire.cache = {};
|
||||||
|
|
||||||
|
var module = (cache[name] = new newRequire.Module(name));
|
||||||
|
|
||||||
|
modules[name][0].call(
|
||||||
|
module.exports,
|
||||||
|
localRequire,
|
||||||
|
module,
|
||||||
|
module.exports,
|
||||||
|
this
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return cache[name].exports;
|
||||||
|
|
||||||
|
function localRequire(x) {
|
||||||
|
var res = localRequire.resolve(x);
|
||||||
|
return res === false ? {} : newRequire(res);
|
||||||
|
}
|
||||||
|
|
||||||
|
function resolve(x) {
|
||||||
|
var id = modules[name][1][x];
|
||||||
|
return id != null ? id : x;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function Module(moduleName) {
|
||||||
|
this.id = moduleName;
|
||||||
|
this.bundle = newRequire;
|
||||||
|
this.exports = {};
|
||||||
|
}
|
||||||
|
|
||||||
|
newRequire.isParcelRequire = true;
|
||||||
|
newRequire.Module = Module;
|
||||||
|
newRequire.modules = modules;
|
||||||
|
newRequire.cache = cache;
|
||||||
|
newRequire.parent = previousRequire;
|
||||||
|
newRequire.register = function (id, exports) {
|
||||||
|
modules[id] = [
|
||||||
|
function (require, module) {
|
||||||
|
module.exports = exports;
|
||||||
|
},
|
||||||
|
{},
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
Object.defineProperty(newRequire, 'root', {
|
||||||
|
get: function () {
|
||||||
|
return globalObject[parcelRequireName];
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
globalObject[parcelRequireName] = newRequire;
|
||||||
|
|
||||||
|
for (var i = 0; i < entry.length; i++) {
|
||||||
|
newRequire(entry[i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mainEntry) {
|
||||||
|
// Expose entry point to Node, AMD or browser globals
|
||||||
|
// Based on https://github.com/ForbesLindesay/umd/blob/master/template.js
|
||||||
|
var mainExports = newRequire(mainEntry);
|
||||||
|
|
||||||
|
// CommonJS
|
||||||
|
if (typeof exports === 'object' && typeof module !== 'undefined') {
|
||||||
|
module.exports = mainExports;
|
||||||
|
|
||||||
|
// RequireJS
|
||||||
|
} else if (typeof define === 'function' && define.amd) {
|
||||||
|
define(function () {
|
||||||
|
return mainExports;
|
||||||
|
});
|
||||||
|
|
||||||
|
// <script>
|
||||||
|
} else if (globalName) {
|
||||||
|
this[globalName] = mainExports;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})({"aBxM8":[function(require,module,exports) {
|
||||||
|
var global = arguments[3];
|
||||||
|
var HMR_HOST = null;
|
||||||
|
var HMR_PORT = null;
|
||||||
|
var HMR_SECURE = false;
|
||||||
|
var HMR_ENV_HASH = "d6ea1d42532a7575";
|
||||||
|
module.bundle.HMR_BUNDLE_ID = "3d2d81e657d5f60e";
|
||||||
|
"use strict";
|
||||||
|
/* global HMR_HOST, HMR_PORT, HMR_ENV_HASH, HMR_SECURE, chrome, browser, globalThis, __parcel__import__, __parcel__importScripts__, ServiceWorkerGlobalScope */ /*::
|
||||||
|
import type {
|
||||||
|
HMRAsset,
|
||||||
|
HMRMessage,
|
||||||
|
} from '@parcel/reporter-dev-server/src/HMRServer.js';
|
||||||
|
interface ParcelRequire {
|
||||||
|
(string): mixed;
|
||||||
|
cache: {|[string]: ParcelModule|};
|
||||||
|
hotData: {|[string]: mixed|};
|
||||||
|
Module: any;
|
||||||
|
parent: ?ParcelRequire;
|
||||||
|
isParcelRequire: true;
|
||||||
|
modules: {|[string]: [Function, {|[string]: string|}]|};
|
||||||
|
HMR_BUNDLE_ID: string;
|
||||||
|
root: ParcelRequire;
|
||||||
|
}
|
||||||
|
interface ParcelModule {
|
||||||
|
hot: {|
|
||||||
|
data: mixed,
|
||||||
|
accept(cb: (Function) => void): void,
|
||||||
|
dispose(cb: (mixed) => void): void,
|
||||||
|
// accept(deps: Array<string> | string, cb: (Function) => void): void,
|
||||||
|
// decline(): void,
|
||||||
|
_acceptCallbacks: Array<(Function) => void>,
|
||||||
|
_disposeCallbacks: Array<(mixed) => void>,
|
||||||
|
|};
|
||||||
|
}
|
||||||
|
interface ExtensionContext {
|
||||||
|
runtime: {|
|
||||||
|
reload(): void,
|
||||||
|
getURL(url: string): string;
|
||||||
|
getManifest(): {manifest_version: number, ...};
|
||||||
|
|};
|
||||||
|
}
|
||||||
|
declare var module: {bundle: ParcelRequire, ...};
|
||||||
|
declare var HMR_HOST: string;
|
||||||
|
declare var HMR_PORT: string;
|
||||||
|
declare var HMR_ENV_HASH: string;
|
||||||
|
declare var HMR_SECURE: boolean;
|
||||||
|
declare var chrome: ExtensionContext;
|
||||||
|
declare var browser: ExtensionContext;
|
||||||
|
declare var __parcel__import__: (string) => Promise<void>;
|
||||||
|
declare var __parcel__importScripts__: (string) => Promise<void>;
|
||||||
|
declare var globalThis: typeof self;
|
||||||
|
declare var ServiceWorkerGlobalScope: Object;
|
||||||
|
*/ var OVERLAY_ID = "__parcel__error__overlay__";
|
||||||
|
var OldModule = module.bundle.Module;
|
||||||
|
function Module(moduleName) {
|
||||||
|
OldModule.call(this, moduleName);
|
||||||
|
this.hot = {
|
||||||
|
data: module.bundle.hotData[moduleName],
|
||||||
|
_acceptCallbacks: [],
|
||||||
|
_disposeCallbacks: [],
|
||||||
|
accept: function(fn) {
|
||||||
|
this._acceptCallbacks.push(fn || function() {});
|
||||||
|
},
|
||||||
|
dispose: function(fn) {
|
||||||
|
this._disposeCallbacks.push(fn);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
module.bundle.hotData[moduleName] = undefined;
|
||||||
|
}
|
||||||
|
module.bundle.Module = Module;
|
||||||
|
module.bundle.hotData = {};
|
||||||
|
var checkedAssets, assetsToDispose, assetsToAccept /*: Array<[ParcelRequire, string]> */ ;
|
||||||
|
function getHostname() {
|
||||||
|
return HMR_HOST || (location.protocol.indexOf("http") === 0 ? location.hostname : "localhost");
|
||||||
|
}
|
||||||
|
function getPort() {
|
||||||
|
return HMR_PORT || location.port;
|
||||||
|
} // eslint-disable-next-line no-redeclare
|
||||||
|
var parent = module.bundle.parent;
|
||||||
|
if ((!parent || !parent.isParcelRequire) && typeof WebSocket !== "undefined") {
|
||||||
|
var hostname = getHostname();
|
||||||
|
var port = getPort();
|
||||||
|
var protocol = HMR_SECURE || location.protocol == "https:" && !/localhost|127.0.0.1|0.0.0.0/.test(hostname) ? "wss" : "ws";
|
||||||
|
var ws = new WebSocket(protocol + "://" + hostname + (port ? ":" + port : "") + "/"); // Web extension context
|
||||||
|
var extCtx = typeof chrome === "undefined" ? typeof browser === "undefined" ? null : browser : chrome; // Safari doesn't support sourceURL in error stacks.
|
||||||
|
// eval may also be disabled via CSP, so do a quick check.
|
||||||
|
var supportsSourceURL = false;
|
||||||
|
try {
|
||||||
|
(0, eval)('throw new Error("test"); //# sourceURL=test.js');
|
||||||
|
} catch (err) {
|
||||||
|
supportsSourceURL = err.stack.includes("test.js");
|
||||||
|
} // $FlowFixMe
|
||||||
|
ws.onmessage = async function(event) {
|
||||||
|
checkedAssets = {} /*: {|[string]: boolean|} */ ;
|
||||||
|
assetsToAccept = [];
|
||||||
|
assetsToDispose = [];
|
||||||
|
var data = JSON.parse(event.data);
|
||||||
|
if (data.type === "update") {
|
||||||
|
// Remove error overlay if there is one
|
||||||
|
if (typeof document !== "undefined") removeErrorOverlay();
|
||||||
|
let assets = data.assets.filter((asset)=>asset.envHash === HMR_ENV_HASH); // Handle HMR Update
|
||||||
|
let handled = assets.every((asset)=>{
|
||||||
|
return asset.type === "css" || asset.type === "js" && hmrAcceptCheck(module.bundle.root, asset.id, asset.depsByBundle);
|
||||||
|
});
|
||||||
|
if (handled) {
|
||||||
|
console.clear(); // Dispatch custom event so other runtimes (e.g React Refresh) are aware.
|
||||||
|
if (typeof window !== "undefined" && typeof CustomEvent !== "undefined") window.dispatchEvent(new CustomEvent("parcelhmraccept"));
|
||||||
|
await hmrApplyUpdates(assets); // Dispose all old assets.
|
||||||
|
let processedAssets = {} /*: {|[string]: boolean|} */ ;
|
||||||
|
for(let i = 0; i < assetsToDispose.length; i++){
|
||||||
|
let id = assetsToDispose[i][1];
|
||||||
|
if (!processedAssets[id]) {
|
||||||
|
hmrDispose(assetsToDispose[i][0], id);
|
||||||
|
processedAssets[id] = true;
|
||||||
|
}
|
||||||
|
} // Run accept callbacks. This will also re-execute other disposed assets in topological order.
|
||||||
|
processedAssets = {};
|
||||||
|
for(let i = 0; i < assetsToAccept.length; i++){
|
||||||
|
let id = assetsToAccept[i][1];
|
||||||
|
if (!processedAssets[id]) {
|
||||||
|
hmrAccept(assetsToAccept[i][0], id);
|
||||||
|
processedAssets[id] = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else fullReload();
|
||||||
|
}
|
||||||
|
if (data.type === "error") {
|
||||||
|
// Log parcel errors to console
|
||||||
|
for (let ansiDiagnostic of data.diagnostics.ansi){
|
||||||
|
let stack = ansiDiagnostic.codeframe ? ansiDiagnostic.codeframe : ansiDiagnostic.stack;
|
||||||
|
console.error("\uD83D\uDEA8 [parcel]: " + ansiDiagnostic.message + "\n" + stack + "\n\n" + ansiDiagnostic.hints.join("\n"));
|
||||||
|
}
|
||||||
|
if (typeof document !== "undefined") {
|
||||||
|
// Render the fancy html overlay
|
||||||
|
removeErrorOverlay();
|
||||||
|
var overlay = createErrorOverlay(data.diagnostics.html); // $FlowFixMe
|
||||||
|
document.body.appendChild(overlay);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
ws.onerror = function(e) {
|
||||||
|
console.error(e.message);
|
||||||
|
};
|
||||||
|
ws.onclose = function() {
|
||||||
|
console.warn("[parcel] \uD83D\uDEA8 Connection to the HMR server was lost");
|
||||||
|
};
|
||||||
|
}
|
||||||
|
function removeErrorOverlay() {
|
||||||
|
var overlay = document.getElementById(OVERLAY_ID);
|
||||||
|
if (overlay) {
|
||||||
|
overlay.remove();
|
||||||
|
console.log("[parcel] ✨ Error resolved");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function createErrorOverlay(diagnostics) {
|
||||||
|
var overlay = document.createElement("div");
|
||||||
|
overlay.id = OVERLAY_ID;
|
||||||
|
let errorHTML = '<div style="background: black; opacity: 0.85; font-size: 16px; color: white; position: fixed; height: 100%; width: 100%; top: 0px; left: 0px; padding: 30px; font-family: Menlo, Consolas, monospace; z-index: 9999;">';
|
||||||
|
for (let diagnostic of diagnostics){
|
||||||
|
let stack = diagnostic.frames.length ? diagnostic.frames.reduce((p, frame)=>{
|
||||||
|
return `${p}
|
||||||
|
<a href="/__parcel_launch_editor?file=${encodeURIComponent(frame.location)}" style="text-decoration: underline; color: #888" onclick="fetch(this.href); return false">${frame.location}</a>
|
||||||
|
${frame.code}`;
|
||||||
|
}, "") : diagnostic.stack;
|
||||||
|
errorHTML += `
|
||||||
|
<div>
|
||||||
|
<div style="font-size: 18px; font-weight: bold; margin-top: 20px;">
|
||||||
|
🚨 ${diagnostic.message}
|
||||||
|
</div>
|
||||||
|
<pre>${stack}</pre>
|
||||||
|
<div>
|
||||||
|
${diagnostic.hints.map((hint)=>"<div>\uD83D\uDCA1 " + hint + "</div>").join("")}
|
||||||
|
</div>
|
||||||
|
${diagnostic.documentation ? `<div>📝 <a style="color: violet" href="${diagnostic.documentation}" target="_blank">Learn more</a></div>` : ""}
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
}
|
||||||
|
errorHTML += "</div>";
|
||||||
|
overlay.innerHTML = errorHTML;
|
||||||
|
return overlay;
|
||||||
|
}
|
||||||
|
function fullReload() {
|
||||||
|
if ("reload" in location) location.reload();
|
||||||
|
else if (extCtx && extCtx.runtime && extCtx.runtime.reload) extCtx.runtime.reload();
|
||||||
|
}
|
||||||
|
function getParents(bundle, id) /*: Array<[ParcelRequire, string]> */ {
|
||||||
|
var modules = bundle.modules;
|
||||||
|
if (!modules) return [];
|
||||||
|
var parents = [];
|
||||||
|
var k, d, dep;
|
||||||
|
for(k in modules)for(d in modules[k][1]){
|
||||||
|
dep = modules[k][1][d];
|
||||||
|
if (dep === id || Array.isArray(dep) && dep[dep.length - 1] === id) parents.push([
|
||||||
|
bundle,
|
||||||
|
k
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
if (bundle.parent) parents = parents.concat(getParents(bundle.parent, id));
|
||||||
|
return parents;
|
||||||
|
}
|
||||||
|
function updateLink(link) {
|
||||||
|
var newLink = link.cloneNode();
|
||||||
|
newLink.onload = function() {
|
||||||
|
if (link.parentNode !== null) // $FlowFixMe
|
||||||
|
link.parentNode.removeChild(link);
|
||||||
|
};
|
||||||
|
newLink.setAttribute("href", link.getAttribute("href").split("?")[0] + "?" + Date.now()); // $FlowFixMe
|
||||||
|
link.parentNode.insertBefore(newLink, link.nextSibling);
|
||||||
|
}
|
||||||
|
var cssTimeout = null;
|
||||||
|
function reloadCSS() {
|
||||||
|
if (cssTimeout) return;
|
||||||
|
cssTimeout = setTimeout(function() {
|
||||||
|
var links = document.querySelectorAll('link[rel="stylesheet"]');
|
||||||
|
for(var i = 0; i < links.length; i++){
|
||||||
|
// $FlowFixMe[incompatible-type]
|
||||||
|
var href = links[i].getAttribute("href");
|
||||||
|
var hostname = getHostname();
|
||||||
|
var servedFromHMRServer = hostname === "localhost" ? new RegExp("^(https?:\\/\\/(0.0.0.0|127.0.0.1)|localhost):" + getPort()).test(href) : href.indexOf(hostname + ":" + getPort());
|
||||||
|
var absolute = /^https?:\/\//i.test(href) && href.indexOf(location.origin) !== 0 && !servedFromHMRServer;
|
||||||
|
if (!absolute) updateLink(links[i]);
|
||||||
|
}
|
||||||
|
cssTimeout = null;
|
||||||
|
}, 50);
|
||||||
|
}
|
||||||
|
function hmrDownload(asset) {
|
||||||
|
if (asset.type === "js") {
|
||||||
|
if (typeof document !== "undefined") {
|
||||||
|
let script = document.createElement("script");
|
||||||
|
script.src = asset.url + "?t=" + Date.now();
|
||||||
|
if (asset.outputFormat === "esmodule") script.type = "module";
|
||||||
|
return new Promise((resolve, reject)=>{
|
||||||
|
var _document$head;
|
||||||
|
script.onload = ()=>resolve(script);
|
||||||
|
script.onerror = reject;
|
||||||
|
(_document$head = document.head) === null || _document$head === void 0 || _document$head.appendChild(script);
|
||||||
|
});
|
||||||
|
} else if (typeof importScripts === "function") {
|
||||||
|
// Worker scripts
|
||||||
|
if (asset.outputFormat === "esmodule") return import(asset.url + "?t=" + Date.now());
|
||||||
|
else return new Promise((resolve, reject)=>{
|
||||||
|
try {
|
||||||
|
importScripts(asset.url + "?t=" + Date.now());
|
||||||
|
resolve();
|
||||||
|
} catch (err) {
|
||||||
|
reject(err);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
async function hmrApplyUpdates(assets) {
|
||||||
|
global.parcelHotUpdate = Object.create(null);
|
||||||
|
let scriptsToRemove;
|
||||||
|
try {
|
||||||
|
// If sourceURL comments aren't supported in eval, we need to load
|
||||||
|
// the update from the dev server over HTTP so that stack traces
|
||||||
|
// are correct in errors/logs. This is much slower than eval, so
|
||||||
|
// we only do it if needed (currently just Safari).
|
||||||
|
// https://bugs.webkit.org/show_bug.cgi?id=137297
|
||||||
|
// This path is also taken if a CSP disallows eval.
|
||||||
|
if (!supportsSourceURL) {
|
||||||
|
let promises = assets.map((asset)=>{
|
||||||
|
var _hmrDownload;
|
||||||
|
return (_hmrDownload = hmrDownload(asset)) === null || _hmrDownload === void 0 ? void 0 : _hmrDownload.catch((err)=>{
|
||||||
|
// Web extension bugfix for Chromium
|
||||||
|
// https://bugs.chromium.org/p/chromium/issues/detail?id=1255412#c12
|
||||||
|
if (extCtx && extCtx.runtime && extCtx.runtime.getManifest().manifest_version == 3) {
|
||||||
|
if (typeof ServiceWorkerGlobalScope != "undefined" && global instanceof ServiceWorkerGlobalScope) {
|
||||||
|
extCtx.runtime.reload();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
asset.url = extCtx.runtime.getURL("/__parcel_hmr_proxy__?url=" + encodeURIComponent(asset.url + "?t=" + Date.now()));
|
||||||
|
return hmrDownload(asset);
|
||||||
|
}
|
||||||
|
throw err;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
scriptsToRemove = await Promise.all(promises);
|
||||||
|
}
|
||||||
|
assets.forEach(function(asset) {
|
||||||
|
hmrApply(module.bundle.root, asset);
|
||||||
|
});
|
||||||
|
} finally{
|
||||||
|
delete global.parcelHotUpdate;
|
||||||
|
if (scriptsToRemove) scriptsToRemove.forEach((script)=>{
|
||||||
|
if (script) {
|
||||||
|
var _document$head2;
|
||||||
|
(_document$head2 = document.head) === null || _document$head2 === void 0 || _document$head2.removeChild(script);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function hmrApply(bundle, asset) {
|
||||||
|
var modules = bundle.modules;
|
||||||
|
if (!modules) return;
|
||||||
|
if (asset.type === "css") reloadCSS();
|
||||||
|
else if (asset.type === "js") {
|
||||||
|
let deps = asset.depsByBundle[bundle.HMR_BUNDLE_ID];
|
||||||
|
if (deps) {
|
||||||
|
if (modules[asset.id]) {
|
||||||
|
// Remove dependencies that are removed and will become orphaned.
|
||||||
|
// This is necessary so that if the asset is added back again, the cache is gone, and we prevent a full page reload.
|
||||||
|
let oldDeps = modules[asset.id][1];
|
||||||
|
for(let dep in oldDeps)if (!deps[dep] || deps[dep] !== oldDeps[dep]) {
|
||||||
|
let id = oldDeps[dep];
|
||||||
|
let parents = getParents(module.bundle.root, id);
|
||||||
|
if (parents.length === 1) hmrDelete(module.bundle.root, id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (supportsSourceURL) // Global eval. We would use `new Function` here but browser
|
||||||
|
// support for source maps is better with eval.
|
||||||
|
(0, eval)(asset.output);
|
||||||
|
// $FlowFixMe
|
||||||
|
let fn = global.parcelHotUpdate[asset.id];
|
||||||
|
modules[asset.id] = [
|
||||||
|
fn,
|
||||||
|
deps
|
||||||
|
];
|
||||||
|
} else if (bundle.parent) hmrApply(bundle.parent, asset);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function hmrDelete(bundle, id) {
|
||||||
|
let modules = bundle.modules;
|
||||||
|
if (!modules) return;
|
||||||
|
if (modules[id]) {
|
||||||
|
// Collect dependencies that will become orphaned when this module is deleted.
|
||||||
|
let deps = modules[id][1];
|
||||||
|
let orphans = [];
|
||||||
|
for(let dep in deps){
|
||||||
|
let parents = getParents(module.bundle.root, deps[dep]);
|
||||||
|
if (parents.length === 1) orphans.push(deps[dep]);
|
||||||
|
} // Delete the module. This must be done before deleting dependencies in case of circular dependencies.
|
||||||
|
delete modules[id];
|
||||||
|
delete bundle.cache[id]; // Now delete the orphans.
|
||||||
|
orphans.forEach((id)=>{
|
||||||
|
hmrDelete(module.bundle.root, id);
|
||||||
|
});
|
||||||
|
} else if (bundle.parent) hmrDelete(bundle.parent, id);
|
||||||
|
}
|
||||||
|
function hmrAcceptCheck(bundle, id, depsByBundle) {
|
||||||
|
if (hmrAcceptCheckOne(bundle, id, depsByBundle)) return true;
|
||||||
|
// Traverse parents breadth first. All possible ancestries must accept the HMR update, or we'll reload.
|
||||||
|
let parents = getParents(module.bundle.root, id);
|
||||||
|
let accepted = false;
|
||||||
|
while(parents.length > 0){
|
||||||
|
let v = parents.shift();
|
||||||
|
let a = hmrAcceptCheckOne(v[0], v[1], null);
|
||||||
|
if (a) // If this parent accepts, stop traversing upward, but still consider siblings.
|
||||||
|
accepted = true;
|
||||||
|
else {
|
||||||
|
// Otherwise, queue the parents in the next level upward.
|
||||||
|
let p = getParents(module.bundle.root, v[1]);
|
||||||
|
if (p.length === 0) {
|
||||||
|
// If there are no parents, then we've reached an entry without accepting. Reload.
|
||||||
|
accepted = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
parents.push(...p);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return accepted;
|
||||||
|
}
|
||||||
|
function hmrAcceptCheckOne(bundle, id, depsByBundle) {
|
||||||
|
var modules = bundle.modules;
|
||||||
|
if (!modules) return;
|
||||||
|
if (depsByBundle && !depsByBundle[bundle.HMR_BUNDLE_ID]) {
|
||||||
|
// If we reached the root bundle without finding where the asset should go,
|
||||||
|
// there's nothing to do. Mark as "accepted" so we don't reload the page.
|
||||||
|
if (!bundle.parent) return true;
|
||||||
|
return hmrAcceptCheck(bundle.parent, id, depsByBundle);
|
||||||
|
}
|
||||||
|
if (checkedAssets[id]) return true;
|
||||||
|
checkedAssets[id] = true;
|
||||||
|
var cached = bundle.cache[id];
|
||||||
|
assetsToDispose.push([
|
||||||
|
bundle,
|
||||||
|
id
|
||||||
|
]);
|
||||||
|
if (!cached || cached.hot && cached.hot._acceptCallbacks.length) {
|
||||||
|
assetsToAccept.push([
|
||||||
|
bundle,
|
||||||
|
id
|
||||||
|
]);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function hmrDispose(bundle, id) {
|
||||||
|
var cached = bundle.cache[id];
|
||||||
|
bundle.hotData[id] = {};
|
||||||
|
if (cached && cached.hot) cached.hot.data = bundle.hotData[id];
|
||||||
|
if (cached && cached.hot && cached.hot._disposeCallbacks.length) cached.hot._disposeCallbacks.forEach(function(cb) {
|
||||||
|
cb(bundle.hotData[id]);
|
||||||
|
});
|
||||||
|
delete bundle.cache[id];
|
||||||
|
}
|
||||||
|
function hmrAccept(bundle, id) {
|
||||||
|
// Execute the module.
|
||||||
|
bundle(id); // Run the accept callbacks in the new version of the module.
|
||||||
|
var cached = bundle.cache[id];
|
||||||
|
if (cached && cached.hot && cached.hot._acceptCallbacks.length) cached.hot._acceptCallbacks.forEach(function(cb) {
|
||||||
|
var assetsToAlsoAccept = cb(function() {
|
||||||
|
return getParents(module.bundle.root, id);
|
||||||
|
});
|
||||||
|
if (assetsToAlsoAccept && assetsToAccept.length) {
|
||||||
|
assetsToAlsoAccept.forEach(function(a) {
|
||||||
|
hmrDispose(a[0], a[1]);
|
||||||
|
}); // $FlowFixMe[method-unbinding]
|
||||||
|
assetsToAccept.push.apply(assetsToAccept, assetsToAlsoAccept);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
},{}],"h5aWI":[function(require,module,exports) {
|
||||||
|
|
||||||
|
},{}]},["aBxM8","h5aWI"], "h5aWI", "parcelRequire94c2")
|
||||||
|
|
||||||
|
//# sourceMappingURL=css-selecteurs.57d5f60e.js.map
|
1
CSS exercices/css2/dist/css-selecteurs.57d5f60e.js.map
vendored
Normal file
1
CSS exercices/css2/dist/css-selecteurs.57d5f60e.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
0
CSS exercices/css2/dist/css-selecteurs.57d5f60e.js.map.16344.13
vendored
Normal file
0
CSS exercices/css2/dist/css-selecteurs.57d5f60e.js.map.16344.13
vendored
Normal file
44
CSS exercices/css2/dist/css-selecteurs.html
vendored
Normal file
44
CSS exercices/css2/dist/css-selecteurs.html
vendored
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<title>Sélecteurs CSS</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="/css-selecteurs.2d074b33.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<!-- cmd: parcel css-selecteurs.html -->
|
||||||
|
<nav>
|
||||||
|
<ul class="menu">
|
||||||
|
<li class="menu">Je suis un item avec une class sous menu</li>
|
||||||
|
<li id="home">Accueil</li>
|
||||||
|
<li>Nos services
|
||||||
|
<ul class="sousMenu">
|
||||||
|
<li>Devis</li>
|
||||||
|
<li>Placement</li>
|
||||||
|
<li>Après-vente</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li>Contact</li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<p class="menu">Bienvenue je suis titouan<br>MDR !</p>
|
||||||
|
<hr>
|
||||||
|
<p>Je vais bientôt décéder ... oupss</p>
|
||||||
|
|
||||||
|
<p class="users">
|
||||||
|
<span id="endmove" class="male">EndMove</span>
|
||||||
|
<br>
|
||||||
|
<span id="gashila" class="female">Gashila</span>
|
||||||
|
<br>
|
||||||
|
<span id="kezo" class="male">Kezo</span>
|
||||||
|
<br>
|
||||||
|
<span id="kiki" class="female">Kiki</span>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<!-- Test du purgatoire -->
|
||||||
|
<p>
|
||||||
|
<span class="female">Si je deviens rose tu à faux ! ;-)</span>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<script src="/css-selecteurs.57d5f60e.js"></script></body>
|
||||||
|
</html>
|
36
CSS exercices/css2/style.css
Normal file
36
CSS exercices/css2/style.css
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
.une-class {
|
||||||
|
/* Quand ca commence par un "." dans le style
|
||||||
|
cela fait référence à une class dans l'html */
|
||||||
|
background-color: cornflowerblue;
|
||||||
|
}
|
||||||
|
|
||||||
|
p span.male {
|
||||||
|
color: purple;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Color en pink les span female contenu dans un paragraphe enfant de classe users */
|
||||||
|
p.users span.female {
|
||||||
|
color: pink;
|
||||||
|
}
|
||||||
|
|
||||||
|
p #endmove.male {
|
||||||
|
/* Quand ca commence par un "#" dans le style
|
||||||
|
cela fait référence à un ID dans l'html */
|
||||||
|
font-size: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
p :hover {
|
||||||
|
/* Un espace entre deux propriété CSS (class,
|
||||||
|
id, ou balise) signifie enfant suivant */
|
||||||
|
color: green;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* body { color: green; }
|
||||||
|
.menu { color: black; }
|
||||||
|
ul.menu { color: red; }
|
||||||
|
#home { color: grey; }
|
||||||
|
ul ul { color: green; }
|
||||||
|
ul ul.menu { color: yellow; } */
|
39
CSS exercices/css2/style2.css
Normal file
39
CSS exercices/css2/style2.css
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
p {
|
||||||
|
color: orange;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Si je veux sélectionner le paragraphe avec une classe titouan */
|
||||||
|
p.menu {
|
||||||
|
color: violet;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Si j'avais voulu s'électionner tous les menus */
|
||||||
|
|
||||||
|
.menu {
|
||||||
|
color: blue; /* color: blue !important; */
|
||||||
|
background-color: lightcyan;
|
||||||
|
}
|
||||||
|
|
||||||
|
body nav ul.menu ul.sousMenu, li.menu {
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
.users {
|
||||||
|
background-color: grey;
|
||||||
|
}
|
||||||
|
|
||||||
|
.users:hover span.female {
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
.users span.female:hover {
|
||||||
|
color: pink;
|
||||||
|
}
|
||||||
|
|
||||||
|
.users :first-child {
|
||||||
|
background-color: greenyellow !important;
|
||||||
|
color: black;
|
||||||
|
font-size: 25px;
|
||||||
|
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user