-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
117 lines (94 loc) · 1.53 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/*--------------HEADER------------------*/
header {
height: 10%;
width: 100%;
text-align: left;
}
img {
height: 150px;
float: right;
}
#title {
color: #020202;
font-family:'Ubuntu Condensed';
font-size: 60px;
margin-left: 15px;
}
/*-------------SUMMARY---------------*/
ul {
list-style: none;
border: 1px solid black;
border-radius: 5px;
margin-top: 12%;
margin-right: auto;
margin-left: auto;
padding: 0;
padding-bottom: 10px;
padding-left: 5px;
text-align: left;
width: 15%;
}
h3 {
font-family:'Ubuntu Condensed';
font-size: 22px;
}
/*---------------TABLE-----------------*/
.cheatsheet {
margin-top: 5%;
width: 100%;
text-align: center;
display : block;
}
.command {
font-family: 'Ubuntu Mono';
}
td,th {
border: 1px solid black;
border-collapse: separate;
border-spacing: 0px;
}
table {
margin: auto;
text-align: left;
margin-top: 20px;
border-radius: 5px;
}
caption {
margin-top: 16px;
margin-bottom:12px;
font-family:'Ubuntu Condensed';
font-weight: bold;
font-size: 20px;
}
/*--------------FOOTER-----------*/
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
#source {
text-align: right;
}
/*--------------BUTTON--------------*/
#upper {
text-align: left;
position: fixed;
bottom: 1%;
}
/*------------------RESPONSIVE---------------*/
@media screen and (max-width: 640px) {
img {
display: none;
}
ul {
display: none;
}
#title {
font-size: 30px;
}
}
@media screen and (max-width: 768px) {
#upper {
display: none;
}