-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
91 lines (77 loc) · 1.46 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
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
body{
margin: 0;
font-family: 'lexand', sans-serif;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.card-container{
color: white;
/* padding: 1.5rem; */
margin: 1.5rem;
display: flex;
border-radius: 10px;
overflow: hidden;
max-width: 900px;
}
.card{
padding: 3rem;
/* display: flex; */
flex-direction: column;
}
.card img{
width:64px ;
height: 40px;
}
a{
color: black;
text-decoration: none;
}
.orange-card{
background-color: #e28525;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
border-radius: 8px 8px 0 0 ;
}
.green-card{
background-color: #016972;
}
.dark-green-card{
background-color: #00403f;
/* border-botto-left-radius: 8px; */
/* border-botto-right-radius: 8px; */
border-radius: 10px 10px 0 0 ;
}
.card h2{
text-transform: uppercase;
font-family: 'big shoulder display';
font-size: 1.5rem;
}
.card p {
opacity: 0.7;
line-height: 25px ;
margin-top: 2.5rem;
}
.card{
padding: 3rem;
border-radius: 1rem;
}
.card a{
border: 2px solid black;
padding: 1em 2em;
border-radius: 1rem;
margin-top: auto;
align-self:flex-start ;
margin-right: auto;
background-color: white;
display: block;
margin-top: 2rem;
width: fit-content;
}
main{
min-height: 100vh;
display: flex;
align-items: center;
justify-content:center ;
}