-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
133 lines (130 loc) · 2.48 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
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
:root {
--clr-neon: hsl(317 100% 54%);
--clr-bg: hsl(323 21% 16%);
}
* {
margin: 0;
padding: 0;
font-family: consolas;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.row {
display: flex;
justify-content: space-around;
/* background-color: yellow; */
width: 660px;
}
.buttononglet {
padding: 0;
width: 200px;
/* background-color: green; */
}
.jumbotron {
display: flex;
justify-content: center;
justify-content: space-around;
align-items: center;
flex-wrap: center;
margin-bottom: 18px;
/* background-color: red; */
}
.btn {
width: 200px;
/* background-color: purple; */
}
.card {
max-width: 30em;
background-color: var(--clr-bg);
}
.card-container {
display: flex;
width: 100%;
}
#contact {
position: absolute;
bottom: 4.5em;
right: 4.5em;
}
#flecheRetour,
.flecheRetourdiv {
position: absolute;
top: 1.2em;
left: 0.2em;
height: 45%;
width: 45%;
}
#flecheRetour {
cursor: pointer;
}
input[type="text"],
textarea,
input[type="email"] {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
margin-right: 0px;
margin-left: 0px;
resize: vertical;
}
label {
margin-right: 0px;
margin-left: 0px;
width: 100%;
margin-top: 0.2em;
}
input[type="submit"] {
background-color: #1255a2;
color: white;
padding: 12px 20px;
border: none;
margin-bottom: 0.8em;
border-radius: 4px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #1872d9;
}
.containerForm {
/* Ajouter box-sizing */
box-sizing: border-box;
border-radius: 5px;
/* background-color:#f2f2f2; */
padding: 20px;
width: 100%;
/* redéfinition 400 + 2*20 */
max-width: 440px;
margin: 0 auto;
}
h1 {
color: #ffc800;
width: 100%;
}
img {
max-width: 100%;
max-height: 600px;
padding-top: 0.6em;
padding-bottom: 0.6em;
}
/* Neon Card */
.neon-card {
font-size: 1em;
display: inline-block;
text-decoration: none;
color: var(--clr-neon);
border: var(--clr-neon) 0.125em solid;
padding: 0.25em 1em;
border-radius : 0.25em;
margin-right: 0.8em;
text-shadow: 0 0 0.125em hsl(0, 0%, 100% / 0.3), 0 0 0.45em currentColor;
box-shadow: 0 0 0.5em 0 var(--clr-neon), inset 0 0 0.5em 0 var(--clr-neon);
position: relative;
}