-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
72 lines (56 loc) · 1.21 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
/* SCSS variable */
.header, .para, .table, #profile_picture {
/* SCSS inheritance */
margin: auto; }
.header {
/* Class Selector */
font-size: 32px;
width: 95%; }
.para {
width: 95%;
font-size: 24px; }
.table {
/* SCSS nesting */
font-size: 12px;
width: 95%;
border: 4px solid grey; }
.table .theader {
font-size: 14px;
border: 2px solid grey; }
.table tr, .table td {
/* Multiple Element Selector */
border: 1px solid grey; }
.status {
text-align: center;
background-color: #87D37C;
border: 1px solid grey; }
#profile_picture {
/* #id selector */
display: block;
width: 30%; }
ol li {
/* Descendant Selector */
color: #A9A9A9; }
ul > li {
/* Child Selector */
color: black; }
.list-center {
display: inline-block;
text-align: left; }
.aboutme-center {
text-align: center; }
/* If the screen size is 600px or less, set the font-size of <div> to 30px */
@media only screen and (max-width: 600px) {
.header {
font-size: 18px; }
.para {
font-size: 14px; }
.table {
font-size: 10px; }
.table .theader {
font-size: 10px; }
.nav-tabs {
font-size: 10px; }
ul {
font-size: 10px; } }
/*# sourceMappingURL=style.css.map */