Commit e9f6841d7c732cac4cd0d878c47f908a652ce856
1 parent
c48984b8
Exists in
master
and in
1 other branch
CSS responsável pela estilização do "Tab" utilizado na index.
git-svn-id: https://svn.bento.ifrs.edu.br/default/ASES/ASES%20-%20Web/ASES%20-%20Web/Fontes/avaliador-web@10596 c2178572-b5ca-4887-91d2-9e3a90c7d55b
Showing
1 changed file
with
104 additions
and
0 deletions
Show diff stats
... | ... | @@ -0,0 +1,104 @@ |
1 | +@media only screen and (min-width : 768px) { | |
2 | + .container { | |
3 | + position: relative; | |
4 | + min-height: 270px; | |
5 | + clear: both; | |
6 | + margin: 25px 0; | |
7 | + } | |
8 | + .tab { | |
9 | + float: left; | |
10 | + } | |
11 | + .tab label.rarios { | |
12 | + background: #eee; | |
13 | + padding: 10px; | |
14 | + border: 1px solid #ccc; | |
15 | + margin-left: -1px; | |
16 | + position: relative; | |
17 | + left: 1px; | |
18 | + } | |
19 | + .contraste .tab label.rarios { | |
20 | + background: #000; | |
21 | + padding: 10px; | |
22 | + border: 1px solid #ccc; | |
23 | + margin-left: -1px; | |
24 | + position: relative; | |
25 | + left: 1px; | |
26 | + } | |
27 | + .tab [type=radio] { | |
28 | + display: none; | |
29 | + } | |
30 | + .contenteudo { | |
31 | + position: absolute; | |
32 | + top: 28px; | |
33 | + left: 0; | |
34 | + background: #ffffff; | |
35 | + right: 0; | |
36 | + bottom: 0; | |
37 | + padding: 20px; | |
38 | + border: 1px solid #ccc; | |
39 | + } | |
40 | + [type=radio]:checked ~ label { | |
41 | + background: #ffffff; | |
42 | + border-bottom: 1px solid #ffffff; | |
43 | + z-index: 2; | |
44 | + } | |
45 | + [type=radio]:checked ~ label ~ .contenteudo { | |
46 | + z-index: 1; | |
47 | + } | |
48 | + | |
49 | + /*-------Alto Contraste------*/ | |
50 | + .contraste .tab label.rarios { | |
51 | + color: #FC0 !important; | |
52 | + } | |
53 | +} | |
54 | + | |
55 | +/*-----Fim (min-width : 768px)------ */ | |
56 | +@media only screen and (max-width : 768px) { | |
57 | + .container { | |
58 | + position: relative; | |
59 | + min-height: 440px; | |
60 | + clear: both; | |
61 | + margin: 25px 0; | |
62 | + min-width: 80%; | |
63 | + } | |
64 | + .tab .contenteudo { | |
65 | + background-color: #fff; | |
66 | + border: 1px solid #000; | |
67 | + padding-right: 10px; | |
68 | + margin-bottom: 15px; | |
69 | + margin-left: 15px; | |
70 | + clear: both; | |
71 | + } | |
72 | + .contraste .tab .contenteudo { | |
73 | + border: 1px solid #fff !important; | |
74 | + } | |
75 | + .tab { | |
76 | + float: left; | |
77 | + } | |
78 | + .tab [type=radio] { | |
79 | + display: none; | |
80 | + } | |
81 | + .tab input { | |
82 | + margin-bottom: 10px; | |
83 | + margin-top: 10px; | |
84 | + margin-left: 10px; | |
85 | + | |
86 | + } | |
87 | + .tab label { | |
88 | + margin-bottom: 15px; | |
89 | + margin-top: 15px; | |
90 | + margin-left: 15px; | |
91 | + border: 0; | |
92 | + } | |
93 | + .tab textarea { | |
94 | + margin-top: 10px; | |
95 | + margin-left: 10px; | |
96 | + width: 90%; | |
97 | + height: 40px; | |
98 | + } | |
99 | + | |
100 | + /*-------Alto Contraste------*/ | |
101 | + .contraste .tab label.rarios { | |
102 | + color: #FC0 !important; | |
103 | + } | |
104 | +} | |
0 | 105 | \ No newline at end of file | ... | ... |