-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnbrePremier.css
More file actions
107 lines (105 loc) · 1.99 KB
/
Copy pathnbrePremier.css
File metadata and controls
107 lines (105 loc) · 1.99 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
102
103
104
105
106
107
body {
width: 100%;
height: 100vh;
margin: 0px;
padding: 0px;
background-color: #0c0013;
overflow-y: hidden;
}
.main {
width: 400px;
height: 500px;
background-color: transparent;
border-radius: 30px;
margin: 50px auto;
padding: 10px;
overflow: hidden;
z-index: 100;
border: aqua solid 1px;
}
#affichage {
width: 100%;
height: 130px;
border-radius: 20px;
border: 2px solid aqua;
background-color: transparent;
overflow-y: auto;
padding-top: 20px;
padding-bottom: 20px;
color: mediumaquamarine ;
font-size: 1.8em;
font-weight: bold;
text-align: center;
}
.saisie {
width: 100%;
height: 30%;
border-radius: 20px;
background-color: transparent;
border: 2px solid aqua;
margin-top: 25px;
text-align: center;
overflow: hidden;
}
input[type=number]{
width: 75%;
height: 50px;
margin-top: 15px;
border: 4px dotted aqua;
outline: none;
border-radius: 50px;
font-size: 24px;
font-weight: bold;
color: aqua;
opacity: 0.95;
text-align: right;
padding-right: 20px;
padding-left: 20px;
background: transparent;
font-family: cursive, sans-serif;
font-style: italic;
}
.button{
width: 90%;
margin: 10px auto;
display: flex;
margin-top: 10px;
justify-content: space-between;
padding: 10px;
}
button {
width: 80px;
height: 40px;
background-color: aqua;
color: black;
border: none;
font-size: 20px;
font-weight: bold;
border-radius: 40px;
transition: transform 300ms
}
button:hover, button:active{
background-color: transparent;
color: aqua;
border: 2px solid aqua;
transform: scale(1.25);
box-shadow: red 10px 50px 10px -20px, transparent 0px 30px 60px -30px, aqua 0px -2px 6px 0px inset;
}
.titre {
width: 100%;
height: 50px;
text-align: center;
font-size: 2em;
font-weight: bold;
padding-top: 10px;
font-style: italic;
font-family: sans-serif, cursive;
color: aqua;
padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
.main {
width: 800px;
height: 900px;
}
}