StartSeite.css 1.3 KB
Newer Older
JOE Thunyathep S's avatar
up  
JOE Thunyathep S committed
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
p.choice {
	margin-top: 6em;
	
}

button {
	position: relative;
	margin: 2em;
	padding: .5em 1em;
	width: 300px;
	background: transparent;
	color:darkblue;
	border: 1px solid white;
	border-radius: 3px;
	cursor: pointer;
	transition: all ease 2s;
	font-family: fantasy;
	font-size:large;
	color:red;
}

	button:hover, button:active {
		outline: none;
		background: white;
		color: darkblue;
		font-family: Copperplate, Papyrus, fantasy;
	}

	button::before, button::after {
		position: absolute;
		width: 100%;
		height: 150px;
		left: 0;
		color: maroon;
	}

	button::before {
		content: " ";
		top: -120px;
		background: none center no-repeat transparent;
		background-size: 30px 30px;
		transition: all ease 1s;
		transform: rotate(0deg);
	}

	button:hover::before {
		background-size: 80px 80px;
		transform: rotate(360deg);
	}

	button::after {
		bottom: -520%;
		transition: transform ease-in .5s, opacity ease-out 1s;
	}




#Start::after {
	content: "HFT STUTTGART";
	transform: matrix3d(-200%);
	opacity: 0;
}

#Start:hover::after {
	transform: matrix3d(0);
	opacity: 1;
}

.credit {
    width: 100px;
    height: 100px;
    position: absolute;
JOE Thunyathep S's avatar
update    
JOE Thunyathep S committed
74
    background: url(../Images/HFT_logo.svg);
JOE Thunyathep S's avatar
up  
JOE Thunyathep S committed
75
76
77
78
79
80
81
82
    background-size: 110px;
    bottom: 50px;
    left: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px 1px rgb(8, 8, 0);
}