-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
66 lines (56 loc) · 883 Bytes
/
style.css
File metadata and controls
66 lines (56 loc) · 883 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
57
58
59
60
61
62
63
64
65
66
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-size: 18px;
}
img {
max-width: 100%;
height: auto;
margin: 10px;
}
body {
background-color: rgb(235, 235, 235);
font-family: "Roboto Condensed";
text-align: center;
font-size: 16px;
margin: 5px;
padding: 10px;
min-width: 300px;
}
h1 {
color: rgb(0, 133, 202);
font-size: 32px;
margin-bottom: 10px;
}
h3 {
color: rgb(232, 119, 34);
font-size: 24px;
margin-bottom: 10px;
}
p {
color: rgb(34, 35, 34);
margin-bottom: 10px;
}
.left {
text-align: left;
}
.bg_pink a {
background-color: rgb(208, 0, 111);
}
.bg_green a {
background-color: rgb(196, 214, 0);
}
.links a {
color: rgb(34, 35, 34);
font-size: 24px;
border-radius: 3px;
margin: 10px;
padding: 12px;
display: inline-block;
text-decoration: none;
}
ul {
margin-left: 20px;
margin-bottom: 10px;
}