-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (52 loc) · 1.09 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
@import url('https://fonts.googleapis.com/css?family=PC+Senior');
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: #f5f5f5;
font-family: Arial, sans-serif;
}
#container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 90%;
max-width: 500px;
padding: 20px;
background: white;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}
h1 {
width: 100%;
text-align: center;
color: white;
background: linear-gradient(to right, #FF9800, #FFC107);
margin: 0;
padding: 10px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
#note {
width: 100%;
height: 300px;
margin: 20px 0;
border: 1px solid #ccc;
padding: 10px;
border-radius: 5px;
resize: none;
background-color: rgba(255, 255, 255, 0.8);
font-family: 'PC Senior', cursive;
font-size: 1rem;
overflow-y: auto; /* Permettre le défilement vertical uniquement */
}
#status {
text-align: center;
margin-top: 10px;
color: green;
}