-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
128 lines (109 loc) · 2 KB
/
style.css
File metadata and controls
128 lines (109 loc) · 2 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
120
121
122
123
124
125
126
127
128
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;400;700&display=swap');
body {
font-family: Raleway;
font-weight: 400;
background-color: #F0EDE9;
}
h1 {
color: #04549A;
}
h2 {
color: #069EB1;
}
p {
margin: 0px;
}
.container {
}
a {
text-decoration: none;
color: white;
}
.card {
margin: 15px auto;
text-align: center;
width: 500px;
background-color: #fffffd;
}
#asp_dev{
padding-top: 10px;
padding-bottom : 50px;
background-color: rgba(500,500,500,0);
}
.card_contour {
box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
#top_card_padding {
padding-top: 5px;
padding-bottom: 75px;
background-image: url("http://www.espn.com/prod/styles/pagetype/otl/20141024_nbagifs/lebron-james.gif" );
background-size: cover;
}
#bottom_card_padding {
padding-top: 5px;
padding-bottom: 20px;
/* background-image: url("https://www.fg-a.com/boats/speed-boat-animated.gif");
background-repeat: no-repeat;
background-position: left bottom; */
}
#geek_size {
font-size: 50px;
}
.photo {
height: 150px;
border-radius: 50%;
}
button {
background-color: #5599d4;
color: white;
font-size: 20px;
border: none;
border-radius: 5px;
padding: 10px 15px 10px 15px;
}
button:hover {
background-color: #04549A;
}
ul {
list-style: none;
padding-left: 0px;
display: flex;
align-items: center;
text-align: center;
padding-inline-start: 0px;
height: 50px;
margin: 0 auto;
width: fit-content;
}
li {
display: inline;
font-size: 50px;
padding: 25px;
}
.fab {
color: #5599d4;
}
.fab:hover {
color: #04549A;
font-size: 75px;
transition-duration: 0.2s;
/* box-shadow: 0 10px 30px rgba(0,0,0,.2); */
}
@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;
}
}