-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·83 lines (69 loc) · 1.1 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
body {
margin: 0px;
padding: 0px;
background-color: #efefef;
font-size: 1em;
font-family: 'Open Sans', sans-serif;
}
h1, h2 {
font-family: 'Roboto', sans-serif;
columns: #3f3f38;
font-size: 3em;
font-weight: lighter;
letter-spacing: 0.1em;
margin: 10px 0;
}
h2 {
font-size: 1.4em;
}
.btn-green {
background-color: #b0ba43;
padding: 0.5em;
font-weight: bolder;
color: white;
}
.btn-green:hover {
background-color: #d9e837;
}
.img-circle {
width: 150px;
border-radius: 50%;
}
.container {
width: 700px;
margin: 40px auto;
}
.card {
background-color: white;
padding: 40px;
box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
border-radius: 4px;
margin: 20px 0px;
text-align: center;
}
ul {
padding: 0;
}
li {
list-style-type: none;
display: inline;
font-size: 3em;
}
li a {
color: #b0ba43;
}
li a:hover {
color: #d9e837;
}
@media (max-width: 720px) {
/* For a screen < 720px, this CSS will be read */
.container {
width: 500px;
}
}
@media (max-width: 540px) {
/* For a screen < 540px, this CSS will be read */
.container {
width: 300px;
}
}