-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
46 lines (43 loc) · 998 Bytes
/
style.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
*{
/*background-image:url(./back2.jpg);*/
background-color: #DEF5FE;
font-size: 20px;
/*oceanblue-ish: 6FBEDF; */
}
/*https://www.pexels.com/photo/close-up-photo-of-blue-body-of-water-1435752/*/
.menubar{
background-color: #748FBF;
width: 100%;
/*overflow: auto;*/
}
.menubar button{
float: left;
padding: 12px;
text-decoration: none;
width: 25%;
text-align: center;
font-size: 20px;
}
.buttons {
box-shadow: 0px 0px 0px 2px #9fb4f2;
background:linear-gradient(to bottom, #7892c2 5%, #476e9e 100%);
background-color:#7892c2;
border-radius:10px;
border:1px solid #4e6096;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size:19px;
padding:12px 37px;
text-decoration:none;
text-shadow:0px 1px 0px #283966;
}
.buttons:hover {
background:linear-gradient(to bottom, #476e9e 5%, #7892c2 100%);
background-color:#476e9e;
}
.buttons:active {
position:relative;
top:1px;
}