-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
120 lines (114 loc) · 2.07 KB
/
Copy pathstyle.css
File metadata and controls
120 lines (114 loc) · 2.07 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
*{
text-decoration-style: none;
margin: 0px;
padding: 0px;
}
body {
margin: 0px;
padding: 0px;
font-family: 'Estonia', cursive;
background-image: url(5.jpg);
background-size: cover;
}
.wrapper{
width: 1100px;
margin: auto;
position: relative;
}
.logo a{
font-size: 50px;
font-weight: 100px;
float: left;
font-family: 'Kings', cursive;
color: black;
text-decoration: none;
display: block;
}
.menu{
float: right;
}
nav{
width: 100%;
margin: auto;
display: flex;
line-height: 80px;
position: sticky;
top: 0;
position: -webkit-sticky;
background: white;
z-index: 1;
border-bottom: 1px solid black;
}
nav ul{
list-style-type: none;
margin: 0px;
padding: 0;
overflow: hidden;
}
nav ul li{
float: left;
}
nav ul li a{
color: black;
font-weight: bold;
text-align: center;
font-size: 20px;
padding: 0px 16px 0px 16px;
text-decoration: none;
}
nav ul li a:hover {
text-decoration: underline;
}
section{
margin: auto;
display: flex;
margin-bottom: 50px;
}
.kolom{
margin-top: 50px;
margin-bottom: 50px;
}
.kolom .deskripsi{
font-size: 20px;
font-weight: bold;
color: black;
}
h2{
font-weight: 800;
font-size: 45px;
margin-bottom: 20px;
color: black;
width: 100%;
line-height: 50px;
}
a.tbl-biru{
background:#3f72af;
border-radius: 20px;
margin-top: 20;
padding: 15px 20px 15px 20px;
color: white;
cursor: pointer;
font-weight: bold;
}
a.tbl-biru:hover{
background: #fc5185;
text-decoration: none;
}
a.tbl-merah{
background:#fc5185;
border-radius: 20px;
margin-top: 20;
padding: 10px 0px 10px 0px;
color: white;
cursor: pointer;
font-weight: bold;
text-decoration: none;
}
a.tbl-merah:hover{
background: #3f72af;
text-decoration: none;
}
p{
margin: 10px 0px 10px 0px;
padding: 10px 0px 10px 0px;
}