-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhello.css
More file actions
102 lines (92 loc) · 2.39 KB
/
hello.css
File metadata and controls
102 lines (92 loc) · 2.39 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
body{
font-family: 'Times New Roman', Times, serif;
background-color: rgba(213, 232, 240, 1);
padding: 0%;
margin: 0%;
}
.container{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
h1{
left: 20px;
background-color: rgba(0, 137, 255, 1);
padding: 20px;
margin: 0px;
}
.imahe {
position: relative;
display: inline;
}
.imahe img {
display: block;
width: 100%;
height: auto;
padding-top: 10px;
}
.text #mine{
align-content: center;
color: #fff;
font-size: 30px;
font-family: 'Times New Roman', Times, serif ;
}
.text{
position: absolute;
top: 40%;
left: 40%;
transform: translate(-50%,-50%);
background-color: rgba(187, 22, 201, 0.4);
padding: 10px;
}
.aboutme{
background-color: #b115d4;
width: 45%;
border: solid;
border-radius: 10px;
border-color: #bb16c9;
margin: 5px;
box-sizing: border-box;
}
#facth {
color: whitesmoke;
border-bottom-style: double;
width: 80%; /* Changed from fixed width to percentage */
max-width: 100px; /* Ensure it doesn't exceed original width */
font-size: clamp(20px, 5vw, 80px); /* Responsive font size */
padding-left: none; /* Responsive padding */
border-width: 10%; /* Adjusted to a fixed width for border */
border-color: whitesmoke; /* Ensuring border color */
box-sizing: border-box; /* Ensuring padding and border are included in width */
}
.fact{
color: #fff;
font-size: 20px;
padding: 10px;
}
#goals{
background-color: rgba(0, 137, 255, 1);
width: 45%;
border: solid;
border-radius: 10px;
border-color: rgba(16, 152, 245, 1);
margin: 5px;
box-sizing: border-box;
margin-right: auto;
}
#goall {
color: black;
border-bottom-style: double;
width: 80%; /* Changed from fixed width to percentage */
max-width: 280px; /* Ensure it doesn't exceed original width */
font-size: clamp(20px, 5vw, 80px); /* Responsive font size */
padding-left: none; /* Responsive padding */
border-width: 10px; /* Adjusted to a fixed width for border */
border-color: black; /* Ensuring border color */
box-sizing: border-box; /* Ensuring padding and border are included in width */
}
.goal{
color: black;
font-size: 20px;
padding: 10px;
}