-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (56 loc) · 1.01 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
58
59
60
61
62
63
64
65
66
/* layout */
@charset "UTF-8";
/* Reset CSS */
* {
margin: 0;
padding: 0;
border: 0;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
body {
background-color: #f0f0f0;
font-family: sans-serif;
font-size: 1em;
}
button {
padding: 10px 20px;
background-color: #fff;
border: 1px solid #000;
font-size: 1.2em;
}
.carta {
width: 250px;
height: 350px;
background-color: #fff;
margin-bottom: 50px;
border-radius: 10px;
box-shadow: rgba(0,0,0,0.4) 0px 2px 4px, rgba(0,0,0,0.3) 0px 7px 13px -3px, rgba(0,0,0,0.2) 0px -3px 0px inset ;
position: relative;
}
.canto {
position: absolute;
font-size: 2em;
text-align: center;
}
#supEsq {
top: 20px;
left: 15px;
}
#infDir {
bottom: 25px;
right: 15px;
transform: rotate(180deg);
}
.centro {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
font-size: 6em;
}