-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
84 lines (71 loc) · 1.16 KB
/
main.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
html {
background-color: #6cde64;
}
body {
margin: 0 auto;
background-color: #4283d2;
padding: 20px;
}
code {
background-color: lightblue;
}
.fixed {
font-size: x-small;
position: fixed;
top: 0;
right: 0;
height: 500px;
background-color: lightblue;
border: 3px solid white;
}
#venti {
transition: width 5s;
}
#venti:hover {
transform: scale(1.2);
width: 500px;
}
* {
box-sizing: border-box;
}
/* Header/Blog Title */
.header {
padding: 20px;
font-size: 30px;
text-align: center;
background: white;
}
.left {
float: left;
width: 75%;
}
.right {
height: auto;
margin-top: 20px;
float: left;
width: 25%;
border: 3px solid yellow;
padding-left: 20px;
text-align: center;
}
.cc {
background-color: rgb(176, 77, 233);
width: 100%;
position: fixed;
top: 0px;
left: 0px;
z-index: 2;
}
.ccc:hover {
color: #f2f2f2;
background-color: darkgoldenrod;
border-radius: 20px;
scale: 1.3;
}
.ccc {
font-size: xx-small;
border: 3px double lightgreen;
border-radius: 20px;
padding: right 50px;
transition: scale .2s;
}