-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.scss
More file actions
56 lines (50 loc) · 819 Bytes
/
Copy pathapp.scss
File metadata and controls
56 lines (50 loc) · 819 Bytes
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
// styles in src/style directory are applied to the whole page
body {
background: lightgrey;
}
.container {
background: darkgrey;
padding: 15px;
}
a {
color: red;
}
.jumbotron {
margin: 52px;
}
a.btn {
color: white !important;
}
header {
border-bottom: 2px solid #000;
background-color: white;
padding: 10px 0px;
text-align: center;
font-size: 25px;
font-weight: bold;
}
main {
display: block;
position: relative;
width: 100%;
text-align: center;
.col-items {
margin: 70px 0;
.col-item {
font-size: 50px;
color: green;
text-align: center;
.text {
display: block;
font-size: 30px;
color: #FFF;
}
}
}
}
footer {
border-top: 2px solid #000;
background-color: white;
padding: 10px 0px;
text-align: center;
}