-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyleAbout.css
115 lines (107 loc) · 2.16 KB
/
styleAbout.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
html, body {
width: auto;
height: auto;
background-image: url("aboutbackground.png");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
margin: 0;
padding: 0;
background-color: black;
}
h1 {
width: 500px;
color: aqua;
margin: auto;
margin: 0px;
padding: 0px;
font-size: 100px;
font-weight:400;
font-family: 'Jura', sans-serif;
text-align:left;
position: absolute;
top:50%;
left:50%;
transform: translate(-120%,-70%);
}
h2{
width: 500px;
color: aqua;
margin: auto;
margin: 0px;
padding: 0px;
font-size: 20px;
font-weight:400;
font-family: 'Jura', sans-serif;
text-align:left;
position: absolute;
top:25%;
left:50%;
transform: translate(-118%,-70%);
}
.startButton{
color:aqua;
width: 150px;
height: 70px;
margin: 0px;
font-size: 30px;
font-family: 'Jura', sans-serif;
font-weight:400;
text-align:center;
border: 1px solid aqua;
border-image:none;
position: absolute;
top:50%;
left:50%;
transform: translate(-390%,150%);
transition: all 0.5s;
cursor: pointer;
}
.startButton:hover{
background-color: aqua;
border: 1px solid white;
color:white;
}
.startButton:active{
background-color: red;
border: 1px solid red;
color:white;
}
.div1{
color: aqua;
padding:0px;
margin:0;
font-size: 60px;
font-family: 'Jura', sans-serif;
font-weight:400;
text-align: center;
border: 15px solid transparent;
border-image: url(border.png) 14% 6% 8% 8% stretch;
width:500px;
height:80px;
display: block;
margin:0px;
text-align:center;
transition: all 0.5s;
}
.div1:hover{
opacity:0
}
.div2{
background-color: hsla(0, 0%, 0%, 0.5);
color: aqua;
padding:0px;
margin:0;
font-size: 15px;
font-weight:400;
font-family: 'Jura', sans-serif;
text-align: center;
border: 15px solid transparent;
border-image: url(border.png) 14% 6% 8% 8% stretch;
width:500px;
height:80px;
display: block;
margin:0px;
text-align:center;
transition: all 0.5s;
}