-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (67 loc) · 1.27 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
@import url("http://fonts.googleapis.com/css?family=Open+Sans:400,300,700|Poppins:300,400,500,700");
body {
background-color: #D8E4FF;
font-family: Open-sans;
color: rgb(70,70,70);
font-size:20px;
line-height:20px;
text-align: center;
margin: 20 auto;
}
@media (max-width: 960px) {
/* For a screen < 960px, this CSS will be read */
.container {
width: 700px;
}
}
@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;
}
}
h1 {
color:navy blue;
font-size: 40px;
font-family: arial;
}
a {
color: rgb(70,70,70);
text-decoration: none ;
}
img {
border-radius: 50%;
width: 228px;
}
li {
text-align: center;
display: -webkit-inline-box;
list-style: none;
letter-spacing: 50px;
padding-right: 0px;
padding-left: 50px;
color: "blue";
font-size: 40px;
margin: 20px;
}
.card {
background-color: #E9F0FF;
padding: 40px;
box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
border-radius: 4px;
text-align: center;
width: 1000px;
margin: 20px auto;
}
.button-dark {
text-align: center;
background: #767D8C;
padding: 10px;
margin: 20px
}