-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.scss
70 lines (62 loc) · 1.26 KB
/
app.scss
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
// Include styles for your frontend here, make sure it is compiled into css before pushing
$primary-color: #000;
$secondary-color: #fff;
$blue-color: #5982b8;
$primary-font: monospace;
$bigSpace: 2rem;
body {
padding: $bigSpace;
font-family: $primary-font;
background: #f3f3f3;
}
section {
text-align: center;
margin-top: $bigSpace;
padding-bottom: $bigSpace*4;
h2 {
text-align: center;
color: $blue-color;
}
.card {
background: $secondary-color;
border-radius: 5px;
padding: 10px;
margin-bottom: 10px;
.name {
flex-basis: 100%;
font-weight: 600;
font-size: 18px;
}
}
}
.flex {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: center;
align-content: center;
gap: 30px;
}
button {
cursor: pointer;
background: $blue-color;
max-width: 200px;
padding: 10px;
border: 0;
text-transform: uppercase;
width: 100%;
border-radius: 5px;
letter-spacing: 0.03em;
font-size: 16px;
font-weight: 600;
color:$secondary-color;
transition: .2s;
&:hover {
opacity:0.8;
}
}
ul {
list-style: none;
padding: 0;
}