-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
119 lines (101 loc) · 1.79 KB
/
style.css
File metadata and controls
119 lines (101 loc) · 1.79 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
117
118
119
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&family=Poppins:wght@300;400;500;700");
body {
font-family: 'Open Sans';
background-color: rgb(210, 210, 210)
}
h1 {
color: rgb(60,60,60);
font-size: 25px;
text-align: center;
}
h2 {
color: rgb(80,80,80);
font-size: 20px;
text-align: center;
}
p {
color: rgb(100,100,100);
font-size: 15px;
}
button {
color: rgb(100,100,100);
font-size: 15px;
width: 100px;
background-color: rgb(250, 250, 250);
border-radius: 5px;
border-color: rgb(100,100,100);
margin-top: 10;
padding: 0px 10px;
}
button:hover{
color: black;
border-color: black;
font-size: 15px;
box-shadow: 2px 2px 3px grey
}
a {
color: rgb(100,100,100);
font-size: 20px
}
a:hover {
color: black;
font-size: 20px;
}
.container {
width: 600px;
margin: 0 auto;
text-align: center;
align-items: center;
}
.card {
background-color: rgb(250, 250, 250);
padding: 1px;
border-radius: 10px;
text-align: center;
box-shadow: 3px 3px 3px grey;
width: 600px
}
.card:hover{
box-shadow: 10px 10px 10px grey;
}
.header{
background-color: rgb(250, 250, 250);
margin-top: 150px;
padding-top: 10px;
padding-bottom: 5px;
border-radius: 10px;
box-shadow: 3px 3px 3px grey;
width: 600px
}
.header:hover{
box-shadow: 10px 10px 10px grey;
}
li {
display: inline-block;
padding: 0px 60px;
}
ul{
padding: 0;
}
img{
border-radius: 50%;
width: 200px
}
@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;
}
}