-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
104 lines (95 loc) · 1.69 KB
/
style.css
File metadata and controls
104 lines (95 loc) · 1.69 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
.upper-nav {
height:50px;
width:100%;
display: flex;
justify-content: space-between;
align-items: center;
background-color: rgb(238, 138, 154); /* dark bg */
color: white;
padding: 0.4rem 1rem;
font-size: 0.9rem;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#upper-left {
display: flex;
gap: 15px; /* space between icons */
}
#upper-left a {
position: relative;
color: white;
text-decoration: none;
font-size: 1.2rem;
}
#upper-left {
display: flex;
gap: 20px;
margin-left: 8rem;
align-items: center;
}
#upper-right a {
color: white;
margin-left: 1rem;
text-decoration: none;
font-size: 1.2rem;
transition: color 0.3s ease;
}
.upper-nav .icons a:hover {
color: #ffb347;
}
.upper-nav .icons a {
color: white;
margin-right: 0.8rem;
font-size: 1.2rem;
text-decoration: none;
transition: color 0.3s ease;
}
.fa-brands{
color:#fff
}
.fa-brands:hover{
opacity: 0.6;
}
h4{
color: #000;
}
h4:hover{
opacity:0.5;
}
#upper-right a:hover {
color: #ffb347; /* accent color */
}
.button{
width: 150px;
height: 70px;
border:1px solid #fff;
background-color: #f9ab00;
display: flex;
justify-content: center;
align-items: center;
font-size: 1.5rem;
border-radius: 30px;
}
.about{
display: flex;
}
#img{
height:300px;
width:300px;
}
.icons{
width: 50%;
margin-left: 3rem;
display: flex;
justify-content: space-around;
align-items: center;
}
#upper-left a:not(:last-child)::after {
content: "";
position: absolute;
right: -10px; /* controls spacing between icon and line */
top: 50%;
transform: translateY(-50%);
height: 16px;
width: 1px;
background-color: white;
}