-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
101 lines (89 loc) · 1.65 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
div.menu {
position: fixed;
top: 0%;
right: 2%;
min-width: auto;
padding: 10px ;
background-color: #4054b2;
border-radius: 0% 0% 15px 15px;
border: 0px solid #4054b2;
opacity: 100%;
transition-duration: 0.4s;
}
.menu:hover {
transition-duration: 0.4s;
color: white;
background-color: #4054b2;
opacity: 100%;
}
/* Fontawesome */
.fas {
font-size: 20px;
border-radius: 50%;
border: 2px solid white;
padding: 5px;
transition-duration: 0.4s;
cursor: pointer;
background-color: white;
color: #4054b2;
}
.fas:hover {
transform: rotate(360deg);
color: white;
background-color: #4054b2;
}
p {
line-height: 0.6;
color: grey;
font-size: calc(15px + .5vw);
}
iframe {
border: 0px none;
margin-left: -250px;
margin-right: -150px;
height: 700px;
margin-top: -305px;
min-width: 1000px;
}
.FRAME {
border: 0px solid rgba(0, 0, 0, 0.1);
overflow: hidden;
margin: 5px 5px 5px 5px;
max-width: 100%;
height: 100%;
}
* {
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
}
/* Float four columns side by side */
.column {
float: left;
width: 33.3%;
padding: 5px 5px 5px 5px;
}
/* Remove extra left and right margins, due to padding */
.row {margin: 0 0px;}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/* Responsive columns */
@media screen and (max-width: 600px) {
.column {
width: 100%;
display: block;
margin-bottom: 10px;
}
}
/* Style the counter cards */
.card {
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
padding: 1px;
text-align: center;
background-color: #f1f1f1;
}