-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
158 lines (136 loc) · 2.6 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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
body {
background-color: #F7F7F8;
}
/*header*/
h1 {
font-weight: 200;
font-size: 50px;
font-family: 'Noto Sans', sans-serif;
color: #3B577D;
}
.header {
background-color: #F1F1F1;
text-align: center;
background-size: cover;
margin: 10px 430px;
border-radius: 7px;
box-shadow: 1px 1px 1px 1px grey;
height: 310px;
}
h2, h3 {
font-family: 'Josefin Sans', sans-serif;
color: #44679F;
margin-left: 10px;
border-bottom: solid;
border-bottom-width: 1px;
border-bottom-left-radius: 29px;
border-bottom-color: #44679F;
}
.header p {
font-family: 'Quicksand', serif;
color: #476268;
font-size: 12px;
}
#profile_picture {
border-style: solid;
opacity: 0.9;
width: 6em;
height: 6em;
border-radius: 100%;
border-style: solid;
border-color: steelblue;
border-width: 3px;
}
/*SOCIAL CARDS*/
.social ul {
background-color: ghostwhite;
width: 246px;
height: 20px;
border-radius: 9px;
margin: auto;
box-shadow: 1px 1px 1px grey;
}
.social li {
font-family: 'Josefin Sans';
font-size: 13px;
display: inline-block;
margin: 0px 5px;
}
.social ul li a {
color: #3B577D
}
/*film section*/
.container {
background-color: #F1F1F1;
text-align: center;
background-size: cover;
margin: 10px 430px;
border-radius: 7px;
box-shadow: 1px 1px 1px 1px grey;
}
.container p {
margin-left: 28px;
color: white;
}
.container .cards {
font-size: 1.1em;
background-color: #C0D9E5;
padding: 10px 30px;
}
.container .cards h3 {
background-color: #F1F1F1;
font-size: 1.5em;
color: #44679F;
border-radius: 9px;
box-shadow: 1px 1px 1px 1px grey;
padding-top: 3px;
}
.film_pictur {
box-shadow: 2px 3px 6px grey;
width: 200px;
height: 260px;
border-radius: 36px;
border-style: solid;
border-color: white;
}
/*footer*/
.footer {
background-color: #F1F1F1;
text-align: center;
background-size: cover;
margin: 10px 430px;
border-radius: 7px;
box-shadow: 1px 1px 1px 1px grey;
padding-top: 10px;
}
.footer ul li{
color: white;
display: inline-block;
}
.footer h3 {
color: #44679F;
}
.footer p {
font-family: 'Orbitron', sans-serif;
color: white;
margin-left: 10px;
}
/*Media queries*/
@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;
}
}