-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
137 lines (105 loc) · 1.9 KB
/
style.css
File metadata and controls
137 lines (105 loc) · 1.9 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
129
130
131
132
133
134
135
136
137
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
min-height: 100vh;
background-color:rgb(5, 5, 5);
color: white;
font-family: Arial, Helvetica, sans-serif;
}
nav ul{
width: 100%;
list-style-type: none;
display: flex;
align-items: center;
justify-content: flex-end;
}
nav li{
height: 50px;
}
nav a{
height: 100%;
text-decoration: none;
color: white;
font-size: 1em;
font-weight: bold;
padding: 0 2.5em;
text-shadow: 3px 4px 5px rgb(187, 42, 42);
display: flex;
flex-direction: column;
align-items: start;
justify-content:center;
}
.logo{
margin-right:auto ;
}
nav a:hover{
color: rgba(143, 93, 93, 1);
}
/* mobile should follow but later */
.sidebar{
position: fixed;
top: 0;
right:0;
display: none;
flex-direction:column ;
justify-content: flex-start;
align-items:flex-start;
height: 100vh;
width: 250px;
background-color: rgba(5, 5, 5, 0.5);
border-left:2px solid rgba(226, 235, 250, 0.5);
z-index: 999;
backdrop-filter: blur(10px);
}
.sidebar li{
width: 100%;
}
.sidebar a{
width: 100%;
margin-top: 2em;
padding-left: 0;
}
.parent-div{
display: flex;
justify-content: center;
align-items:center;
}
section{
margin: 8em;
}
#greetings{
font-size: 2em;
}
#profession{
font-size: 4rem;
font-weight:bold;
text-shadow: 3px 2px 3px rgba(245, 39, 78, 0.78);
margin-bottom: 0.6em;
}
span{
color: red;
text-shadow: 4px 2px 3px rgba(208, 219, 226, 0.68);
}
.text-body{
font-size: 1.2em;
}
.my-btns{
margin-top: 2em;
display: flex;
flex-direction: row;
gap: 2em;
}
.my-btns button{
padding: 0.5em 2.05em ;
vertical-align: center;
font-size: 1em;
font-weight: 600;
border: none;
border-radius: 5px;
}
.size-6{
width: 2em;
}