-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
101 lines (86 loc) · 1.68 KB
/
styles.css
File metadata and controls
101 lines (86 loc) · 1.68 KB
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
body {
font-family: 'Roboto', sans-serif;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
background: linear-gradient(to bottom, #00bcd4, #2196f3);
overflow: hidden;
cursor: url('img/curseur.png'), auto;
}
.container {
text-align: center;
}
#thouny {
max-width: 100%;
height: auto;
margin-bottom: 20px;
border-radius: 10px;
transition: transform 0.3s ease-in-out;
}
#thouny:hover {
transform: scale(1.1);
}
.question-box {
background-color: #FFF;
padding: 30px;
border-radius: 10px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
transition: box-shadow 0.3s ease-in-out;
max-width: 500px;
margin: 0 auto;
}
.question-box:hover {
box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}
label {
font-size: 20px;
display: block;
margin-bottom: 15px;
color: #333;
}
textarea {
padding: 15px;
font-size: 18px;
margin-bottom: 15px;
width: 100%;
box-sizing: border-box;
resize: vertical;
border: 2px solid #4CAF50;
border-radius: 8px;
}
button {
padding: 15px 25px;
font-size: 18px;
cursor: url('img/curseur.png'), auto;;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 8px;
transition: background-color 0.3s ease-in-out;
}
button:hover {
background-color: #45a049;
}
.reponse {
font-weight: bold;
margin-top: 30px;
font-size: 20px;
color: #333;
}
@media screen and (max-width: 800px) {
.question-box {
max-width: 90%;
}
textarea {
font-size: 16px;
}
button {
padding: 12px 20px;
font-size: 16px;
}
.reponse {
font-size: 18px;
}
}