-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathstyle1.css
72 lines (62 loc) · 1.21 KB
/
style1.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
*{
font-family: 'Montserrat', sans-serif;
}
.container h2{
text-align: center;
background-color: rgb(238, 255, 0);
border-radius: 5px;
margin: 5px;
padding: 7px;
}
.welcome h2{
margin: 10px;
padding: 5px;
text-align: center;
background-color: rgb(220, 130, 223);
border-radius: 10px;
}
.welcome h2:hover{
transform: scale(1.01);
background-color: rgb(255, 0, 242);
}
h3{
margin: 28px;
padding: 5px;
text-align: center;
background-color: rgba(230, 230, 136, 0.945);
border-radius: 10px;
}
h3:hover{
transform: scale(1.01);
background-color: yellow;
}
#hover1{
width: 200px;
font-weight:bolder;
background-color: rgba(243, 224, 117, 0.945);
border-radius: 5px;
text-align: center;
height: 100px;
line-height: 100px;
}
#hover1:hover{
transform: scale(1.1);
background-color: gold;
}
#hover2{
width: 200px;
font-weight:bolder;
background-color:rgba(115, 247, 115, 0.849);
border-radius: 5px;
text-align: center;
height: 100px;
line-height: 100px;
}
#hover2:hover{
transform: scale(1.1);
background-color: chartreuse;
}
.form-control{
height: 40px;
width: 250px;
}