forked from thepraiseworthy/ResponsiveWebPage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcombatt.css
More file actions
77 lines (72 loc) · 1.14 KB
/
combatt.css
File metadata and controls
77 lines (72 loc) · 1.14 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
body{
margin: 0;
padding: 0;
text-align: center;
background: linear-gradient(rgba(0, 0, 50 , 0.5), rgba(0, 0, 50, 0.5)), url(yes.jpg);
background-size: cover;
background-position: center;
font-family: sans-serif;
}
*{
margin: 0;
padding: 0;
}
.header
{
height: 100vh;
}
.navbar-style
{
box-shadow: 0 5px 10px #efefef;
text-transform: uppercase;
}
.logo
{
height: 48px;
padding: 2px 10px;
}
.icon-bar
{
background: darkorange;
}
li a
{
color: #333;
}
.big-text
{
font-size: 52px;
margin: 20px 0;
color: darkgoldenrod
}
a.btn
{
margin: 30px 10px;
width: 150px;
padding: 10px;
border-radius: 20px;
}
a.btn-first
{
background-color: darkgoldenrod;
color: #fff;
}
a.btn-second
{
background: transparent;
border: 1px solid darkgoldenrod;
color: black
}
a.btn-third
{
background-color: darkgoldenrod;
color: #fff;
}
a.btn:hover
{
background: darkgoldenrod;
color: #fff;
border: none;
box-shadow: 5px 5px 10px #999;
transition: 0.3s;
}