-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain_css.css
More file actions
92 lines (79 loc) · 1.34 KB
/
Copy pathmain_css.css
File metadata and controls
92 lines (79 loc) · 1.34 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
body {
background-color: lightblue;
width: 100%
}
hr{
border: 1px solid grey;
margin-bottom: 25px;
}
nav{
background-color: skyblue;
}
nav div a img{
padding-top:0px;
margin:3px 3px;
}
nav div span{
font-size: larger;
padding:10px;
margin-left:10px;
color: white;
}
.center_piece{
position: relative;
width:100%;
top:10px
}
.center{
position: absolute;
align-items: center;
}
.center_img{
width: 250px;
height: 250px;
border-radius: 20%;
}
button {
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
opacity: 0.9;
transition: all 0.5s;
font: verdana;
}
.leftbtn {
padding: 14px 20px;
display: inline-block;
background-color: #f08080;
}
.rightbtn {
padding: 14px 20px;
background-color: #4CAF50;
}
.leftbtn, .rightbtn {
float: left;
width: 50%;
}
.leftbtn:hover{
background-color: #f44336;
opacity: 1;
}
.rightbtn:hover{
background-color: #006400;
opacity: 1;
}
button:hover{
background-color: #006400;
opacity: 1;
}
footer{
position: fixed;
bottom:0px;
width: 100%;
background-color: black;
color: white;
}