-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpemweb.css
164 lines (126 loc) · 2.49 KB
/
pemweb.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/* RESET */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body Styling */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f0f2f5;
color: #333;
padding: 20px;
}
/* Header Utama */
#main-heading {
color: #4c6faf;
text-align: center;
font-size: 3em;
margin-bottom: 10px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 2px;
}
/* Subheading Styling */
.subheading {
text-align: center;
color: #555;
font-size: 1.5em;
margin-bottom: 20px;
}
/* Intro Section */
.intro {
text-align: center;
font-size: 1.2em;
margin-bottom: 15px;
color: #666;
}
/* Strong Element (NIM) */
p strong {
display: block;
text-align: center;
font-size: 1.1em;
color: #4cafaf;
margin: 10px 0;
font-weight: bold;
}
/* Emphasized Text */
p em {
display: block;
text-align: center;
font-style: italic;
margin-bottom: 20px;
color: #777;
}
/* Image Styling */
img {
display: block;
margin: 20px auto;
border-radius: 50%;
border: 5px solid #4cafaf;
width: 250px;
height: 250px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease;
}
img:hover {
transform: scale(1.1);
}
/* Link Styling */
a {
color: #4cafaf;
text-align: center;
display: block;
margin: 20px 0;
text-decoration: none;
font-size: 1.2em;
font-weight: bold;
border: 2px solid #4cafaf;
padding: 10px 20px;
border-radius: 5px;
transition: background-color 0.3s, color 0.3s;
}
a:hover {
background-color: #4cafaf;
color: white;
}
/* List Styling */
ul,
ol {
max-width: 600px;
margin: 20px auto;
padding: 0;
}
ul li,
ol li {
background-color: #fff;
border: 1px solid #ddd;
margin-bottom: 10px;
padding: 10px 20px;
border-radius: 5px;
list-style-position: inside;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Table Styling */
table {
width: 100%;
border-collapse: collapse;
margin: 30px auto;
max-width: 600px;
}
table th,
table td {
padding: 15px;
text-align: center;
border: 1px solid #ddd;
}
table th {
background-color: #4cafaf;
color: white;
}
table td {
background-color: #f9f9f9;
}
table tr:hover {
background-color: #f1f1f1;
}