-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyl.css
executable file
·57 lines (47 loc) · 905 Bytes
/
styl.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
.conteneur {
border: 1px solid black;
width: 60%;
margin: 0% auto;
}
.titre h1{
border: 1px solid black;
text-align: center;
margin: 0% auto;
}
.titre h3{
padding: 10px;
word-wrap: break-word;
border-bottom: 2px dotted black;
}
.boutton{
display: flex;
flex-direction: row;
justify-content: space-around;
margin-bottom: 20px;
}
.boutton .btn{
width: 30%;
height: 50px;
}
.boutton .btn-1{
background-color: rgba(35, 230, 50, 0.8);
border-color: rgba(35, 230, 50, 0.8);
border-radius: 30px/60px;
cursor: pointer;
}
.boutton .btn-2{
background-color: rgba(230, 35, 50, 0.8);
border-color: rgba(230, 35, 50, 0.8);
border-radius: 30px/60px;
cursor: pointer;
}
.affichage{
border: 2px solid black;
height: 90px;
display: flex;
}
.affichage .content {
border: 3px solid yellow;
margin: 0% auto;
width: 60%;
}