-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (71 loc) · 1.27 KB
/
style.css
File metadata and controls
95 lines (71 loc) · 1.27 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
html {
scroll-behavior: smooth;
}
body {
background: #1f2235;
font-family: "Baloo Tamma 2", cursive;
}
.m-heading {
font-family: "Roboto Slab", serif;
}
.navigation-link {
border: 2px solid transparent;
}
.navigation-link:hover {
text-decoration: none;
border-bottom: 2px solid #f5ba09;
transition: 0.5s ease;
}
.main-container {
height: 100vh;
}
.main_row {
display: flex;
justify-content: center;
align-items: center;
}
.main_row h1 {
font-size: 5rem;
}
.main_row img {
width: auto;
height: 100vh;
}
.about {
background: #313552;
border-radius: 0.5rem;
}
.card {
border-bottom: 8px solid #f5ba09;
}
.media_link {
padding: 1rem;
max-width: 15rem;
margin-left: 1rem;
border: 2px solid #f5ba09;
border-radius: 0.5rem;
}
input[type=submit]:hover {
background-color: #45a049;
}
.container {
border-radius: 2px;
background-color: #1f2235;
}
.column {
float: left;
width: 100%;
margin-top: 6px;
padding: 30px;
}
.row:after {
content: "";
display: table;
clear: both;
}
@media screen and (max-width: 600px) {
.column, input[type=submit] {
width: 100%;
margin-top: 0;
}
}