-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (59 loc) · 954 Bytes
/
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
/* Css reset */
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: rgba(159, 214, 68, 1);
font-family: "Roboto", sans-serif;
line-height: 2;
}
p {
margin: 1rem;
}
a {
text-decoration: none;
}
.container {
margin: auto;
padding: 0 2rem;
overflow: auto;
max-width: 1100px;
}
#image {
max-width: 100%;
display: block;
height: auto;
margin: 10px auto;
}
.big-card {
margin: 5rem 10rem;
max-width: 100%;
height: auto;
border-radius: 10px;
background: #f4f4f4;
box-shadow: 1px 1px 2.5px 2.5px #888;
transform: scale(0.9);
transition: transform 1s ease 0.5s;
}
.big-card:hover {
transform: scale(1);
}
.text-center {
text-align: center;
}
#main-content {
margin-top: 2rem;
}
#main-content #title {
font-size: 4rem;
font-weight: bold;
}
#main-content #small-desc,
#main-content #img-div #img-caption,
#main-content #img-div p {
font-size: 1.2rem;
}