-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
116 lines (100 loc) · 1.97 KB
/
styles.css
File metadata and controls
116 lines (100 loc) · 1.97 KB
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
116
@font-face {
font-family: Roboto;
src: url("Roboto/Roboto-Regular.ttf");
}
body {
margin: 0;
background-color: rgb(210, 210, 210);
}
header {
display: flex;
width: 100vw;
height: 60px;
align-items: center;
justify-content: left;
background-color: rgb(240, 240, 240);
}
.navigation-button {
font-family: Roboto;
font-size: 18px;
color: rgb(240, 240, 240);
background-color: rgb(60, 60, 60);
padding: 12px;
border-radius: 10px;
margin-left: 12px;
transition: transform 0.4s;
}
.navigation-button:active {
transform: scale(0.8);
}
h1 {
font-family: Roboto;
font-size: 48px;
color: rgb(60, 60, 60);
text-align: center;
margin: 60px 0;
}
.content {
font-family: Roboto;
font-size: 18px;
color: rgb(70, 70, 70);
width: calc(min(820px, 100vw - 80px));
margin: auto;
padding: 20px;
border-radius: 20px;
background-color: rgb(240, 240, 240);
}
.content:last-of-type {
margin-bottom: 40px;
}
.horizontal-scroll {
overflow-x: scroll;
overflow-y: hidden;
white-space: nowrap;
}
img {
vertical-align: top;
display: inline-block;
width: 240px;
height: 500px;
border-radius: 20px;
border: solid 1px rgb(60, 60, 60);
margin-right: 20px;
}
img:last-of-type {
margin-right: 0px;
}
.content-subheader {
display: block;
font-family: Roboto;
font-weight: 900;
font-size: 24px;
color: rgb(20, 20, 20);
margin-bottom: 20px;
}
.content-bold {
display: inline-block;
font-family: Roboto;
font-weight: 700;
font-size: 18px;
color:rgb(70, 70, 70);
}
.content-normal {
display: inline-block;
font-family: Roboto;
font-weight: 300;
font-size: 18px;
color: rgb(70, 70, 70);
margin-bottom: 20px;
}
.content-indent1 {
display: inline-block;
margin-left: 16px;
}
.content-indent2 {
display: inline-block;
margin-left: 32px;
}
.content-link {
color:rgb(70, 70, 70);
}