-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompteStyle.css
83 lines (72 loc) · 1.46 KB
/
compteStyle.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
* {
box-sizing: border-box;
margin: 0;
font-family: 'Roboto Slab', serif;
}
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-image: url(./background.jpg);
}
.card {
height: 600px;
width: 340px;
background-color: rgba(55, 26, 27, 0.9);
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 32px;
border-radius: 15px;
gap: 5px;
box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.title{
font-weight: 800;
font-size: 1.5rem;
color: #fff;
}
form {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 16px
}
input {
width: 100%;
height: 24px;
border-radius: 5px;
border: solid black 1px;
background-color: #8a9361;
color: black;
}
::placeholder{
color:darkslategray;
}
button {
width: 200px;
height: 35px;
border-radius: 5px;
border: none;
background-color: rgba(138, 147, 97, 0.9);
font-weight: 900;
font-size: 1.1rem;
color: black;
}
button:hover{
background-color: rgba(138, 147, 97, 1);
cursor: pointer;
}
.spaceButton {
display: flex;
flex-direction: column;
gap: 8px;
}
.rembrandt {
object-fit: contain;
max-width: 65%;
border-radius: 5px;
}