This repository has been archived by the owner on Oct 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
style.css
129 lines (116 loc) · 2.01 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
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
*
{
background-color: #181f21;
margin: 0;
padding: 0;
}
.container{
height: 50vh;
width:100%;
}
h1
{
font-family: 'JetBrains Mono';
text-align: center;
color: aqua;
}
p
{
font-family: 'JetBrains Mono';
font-size: 20px;
font-weight: bolder;
text-align: center;
color: antiquewhite;
margin-top: 10px;
margin-bottom: 20px;
}
.photo {
height: 50px;
margin: 5px auto;
text-align: center;
padding: 20px 10px;
transition: transform 0.3s;
width:100px;
}
.photo:hover {
transform: scale(1.1);
}
.photo img{
border:2px solid aqua;
}
.cesa{
padding-left: 40%;
justify-content: center;
align-items: center;
text-align: center;
}
header {
background-color: #000;
padding: 15px 0;
margin-bottom:21px ;
}
.navbar {
display: flex;
justify-content: space-around;
align-items: center;
list-style-type: none;
margin: 0;
padding: 0;
text-align: right;
background-color: #000;
}
.navbar li {
margin-right: 10px;
}
.navbar li a {
text-decoration: none;
color: #fff;
font-weight: bold;
padding: 10px 20px;
/* background-color: #c8d1d3; */
/* transition: background-color 0.3s, color 0.3s; */
}
.navbar li a:hover {
background-color: #7fbacb;
color: rgb(70, 73, 218);
border-radius: 7px;
}
.ready{
margin-top: 4rem;
display: flex;
/* justify-content: center; */
/* align-items: center; */
height:100vh;
width:100%;
margin:1rem 1rem;
/* background-color: red; */
}
.right-col{
flex-basis: 50%;
}
.right-col img{
display: block;
/* padding-left: 20px; */
align-items: center;
height:400px;
width:500px;
}
.left-col h1{
font-size: 50px;
font-weight:600;
padding-top: 25px;
padding-left: 40px;
}
.left-col h3{
color:aquamarine;
padding-top: 25px;
padding-left: 300px;
font-size: 25px;
font-weight: 300;
padding-bottom: 14px;
letter-spacing: 2px;
}
.left-col p{
padding: 30px 30px;
justify-content: start;
}