forked from sabamerchant/girls.code-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
65 lines (57 loc) · 1.05 KB
/
index.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
body {
background-color: #EDEDED;
}
.bgimg {
min-height: 30vh;
background-image: url('../images/handholding.jpeg');
background-size: auto;
background-color: rgba(255,255,255,0.6);
background-blend-mode: lighten;
}
a {
color: white;
text-decoration: none;
}
a:hover{
color: white;
text-decoration: none;
}
.accbtn {
border-radius: 5px;
border-style: none;
background-color: darkblue;
color: #EDEDED;
opacity: 0.9;
font-size: 20px;
transition: 0.3s;
}
.accbtn:hover {
opacity: 1;
color: #EDEDED;
box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
}
.regbtn {
border-radius: 5px;
border-style: none;
background-color: #1a1a1a;
color: #EDEDED;
padding: 5px 10px;
opacity: 0.9;
transition: 0.3s;
}
.regbtn:hover {
opacity: 1;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}
img {
max-width: 100%;
border-radius: 5px;
border: solid 2px #1a1a1a
}
.testimonial {
border-radius: 50%;
max-width: 20vw;
}
.panel {
border-bottom: solid 1px #1a1a1a;
}