-
Notifications
You must be signed in to change notification settings - Fork 0
/
style1.css
126 lines (111 loc) · 1.83 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
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
116
117
118
119
120
121
122
123
124
125
126
body
{
background-image: url("background.png");
font-family: "Lato", sans-serif;
background-size: cover;
background-position: center;
}
@keyframes example
{
from
{
opacity: 0;
}
to
{
opacity: 1;
}
}
#container
{
width: 1000px;
margin-left: auto;
margin-right: auto;
}
#logo
{
color: #ffffff;
margin-top: 20px;
font-size: 44px;
font-weight: 900;
letter-spacing: 3px;
text-align: center;
}
#menu
{
background-color: #303030;
color: #ffffff;
margin-top: 20px;
padding: 8px;
text-align: center;
font-weight: 700;
border: 2px solid #f36742;
box-shadow: #f36742 5px 5px 20px;
}
#content
{
padding: 40px;
text-align: center;
width: 80%;
height: auto;
margin-left: 150px;
}
#footer
{
clear: both;
color: #ffffff;
text-align: center;
font-size: 18px;
font-weight: 700;
padding: 20px 0;
text-shadow: 10px 10px 20px #000000;
background-color: rgba(0,0,0, 0.4);
margin-top: 50px;
}
.option
{
float: left;
min-width: 304px;
height: 25px;
font-size: 18px;
padding: 10px;
border-right: 2px dotted #444444;
opacity: 0.8;
color: #ffffff;
}
.option:hover
{
background-color: #000000;
cursor: pointer;
color: #f36742;
}
.img
{
display: inline-block;
}
.projektimg
{
border: 3px solid #f36742;
box-shadow: #ffffff 5px 5px 20px;
border-radius: 4px;
margin: 20px;
width: 570px;
height: 320px;
}
.projektimg h1
{
opacity: 0;
text-align: center;
padding: 10%;
transition: 1s;
}
.projektimg:hover h1
{
opacity: 1;
background: rgba(0, 0, 0, 0.6);
}
a
{
text-decoration: none;
color: white;
}